summaryrefslogtreecommitdiffstats
path: root/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/p1.cpp
blob: 3f2bc569edf62fd7d8304f6961516af86baf3d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// RUN: %clang_cc1 -verify %s -std=c++11
// RUN: %clang_cc1 -verify %s -std=c++17
// RUN: %clang_cc1 -verify %s -std=c++2a

// A function that is explicitly defaulted shall
struct A {
  // -- be a special member function,
  A(int) = default; // expected-error {{only special member functions may be defaulted}}
  A(A) = default; // expected-error {{must pass its first argument by reference}}

  // -- have the same declared function type as if it had been implicitly
  //    declared
  void operator=(const A &) = default; // expected-error {{must return 'A &'}}
  A(...) = default;
  A(const A &, ...) = default;
  A &operator=(const A&) const = default;
  A &operator=(A) const = default; // expected-error {{must be an lvalue refe}}
#if __cplusplus <= 201703L
  // expected-error@-5 {{cannot be variadic}}
  // expected-error@-5 {{cannot be variadic}}
  // expected-error@-5 {{may not have 'const'}}
  // expected-error@-5 {{may not have 'const'}}
#else
  // expected-warning@-10 {{implicitly deleted}} expected-note@-10 {{declared type does not match the type of an implicit default constructor}}
  // expected-warning@-10 {{implicitly deleted}} expected-note@-10 {{declared type does not match the type of an implicit copy constructor}}
  // expected-warning@-10 {{implicitly deleted}} expected-note@-10 {{declared type does not match the type of an implicit copy assignment}}
#endif

  //    (except for possibly differing ref-qualifiers
  A &operator=(A &&) & = default;

  //    and except that in the case of a copy constructor or copy assignment
  //    operator, the parameter type may be "reference to non-const T")
  A(A &) = default;
  A &operator=(A &) = default;

  // -- not have default arguments
  A(double = 0.0) = default; // expected-error {{cannot have default arguments}}
  A(const A & = 0) = default; // expected-error {{cannot have default arguments}}
};

struct A2 {
  A2(...);
  A2(const A2 &, ...);
  A2 &operator=(const A2&) const;
};
A2::A2(...) = default; // expected-error {{cannot be variadic}}
A2::A2(const A2&, ...) = default; // expected-error {{cannot be variadic}}
A2 &A2::operator=(const A2&) const = default; // expected-error {{may not have 'const'}}

struct B {
  B(B&);
  B &operator=(B&);
};
struct C : B {
  C(const C&) = default;
  C &operator=(const C&) = default;
#if __cplusplus <= 201703L
  // expected-error@-3 {{is const, but a member or base requires it to be non-const}}
  // expected-error@-3 {{is const, but a member or base requires it to be non-const}}
#else
  // expected-warning@-6 {{implicitly deleted}} expected-note@-6 {{type does not match}}
  // expected-warning@-6 {{implicitly deleted}} expected-note@-6 {{type does not match}}
#endif
};

struct D : B { // expected-note 2{{base class}}
  D(const D&);
  D &operator=(const D&);
};
D::D(const D&) = default; // expected-error {{would delete}} expected-error {{is const, but}}
D &D::operator=(const D&) = default; // expected-error {{would delete}} expected-error {{is const, but}}