freebsd-nq/test/SemaCXX/copy-constructor-error.cpp
2009-10-14 18:03:49 +00:00

14 lines
346 B
C++

// RUN: clang-cc -fsyntax-only -verify %s
struct S { // expected-note {{candidate function}}
S (S); // expected-error {{copy constructor must pass its first argument by reference}} \\
// expected-note {{candidate function}}
};
S f();
void g() {
S a( f() ); // expected-error {{call to constructor of 'a' is ambiguous}}
}