blob: 9cae77504b514a3597ecfe03daa35102239f903a [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
struct S {
S (S); // expected-error {{copy constructor must pass its first argument by reference}}
};
S f();
void g() {
S a( f() );
}