[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaCXX / copy-constructor-error.cpp
blob6ffed9bf222a0149ca1813db1155c0140c894b90
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 struct S {
4 S (S); // expected-error {{copy constructor must pass its first argument by reference}}
5 };
7 S f();
9 void g() {
10 S a( f() );
13 class foo {
14 foo(foo&, int); // expected-note {{previous}}
15 foo(int); // expected-note {{previous}}
16 foo(const foo&); // expected-note {{previous}}
19 foo::foo(foo&, int = 0) { } // expected-error {{makes this constructor a copy constructor}}
20 foo::foo(int = 0) { } // expected-error {{makes this constructor a default constructor}}
21 foo::foo(const foo& = 0) { } //expected-error {{makes this constructor a default constructor}}
23 namespace PR6064 {
24 struct A {
25 A() { }
26 inline A(A&, int); // expected-note {{previous}}
29 A::A(A&, int = 0) { } // expected-error {{makes this constructor a copy constructor}}
31 void f() {
32 A const a;
33 A b(a);
37 namespace PR10618 {
38 struct A {
39 A(int, int, int); // expected-note {{previous}}
41 A::A(int a = 0, // expected-error {{makes this constructor a default constructor}}
42 int b = 0,
43 int c = 0) {}
45 struct B {
46 B(int);
47 B(const B&, int); // expected-note {{previous}}
49 B::B(const B& = B(0), // expected-error {{makes this constructor a default constructor}}
50 int = 0) {
53 struct C {
54 C(const C&, int); // expected-note {{previous}}
56 C::C(const C&,
57 int = 0) { // expected-error {{makes this constructor a copy constructor}}