blob: 62609e25f682a4ff6167449e01250c65f4944870 [file] [log] [blame]
struct S {
S(S&&);
S(const S&);
};
struct Foo {
Foo(const S &s);
S s;
};