9 lines
81 B
C
9 lines
81 B
C
struct S {
|
|
S(S&&);
|
|
S(const S&);
|
|
};
|
|
struct Foo {
|
|
Foo(const S &s);
|
|
S s;
|
|
};
|