summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/copy-constructor-error.cpp
blob: 2e42fcc3b1cd82a849efcde9678a4c23883b8b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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}}
}