brintos

brintos / llvm-project-archived public Read only

0
0
Text · 81 B · 62609e2 Raw
9 lines · c
1struct S {2  S(S&&);3  S(const S&);4};5struct Foo {6  Foo(const S &s);7  S s;8};9