blob: 64a7d58e19ef799285586debffeed28671aafe3c [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() );
}
namespace PR6064 {
struct A {
A() { }
inline A(A&, int); // expected-note {{was not a special member function}}
};
A::A(A&, int = 0) { } // expected-warning {{makes this constructor a copy constructor}}
void f() {
A const a;
A b(a);
}
}