aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/defaulted14.C
blob: e476d576cfaefacfa0e9bc2ef1e720afa345ae08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/39866
// { dg-options "-std=c++0x" }

struct A {
  A& operator=(const A&) = delete; // { dg-bogus "" }

  void operator=(int) {}	// { dg-message "" }
  void operator=(char) {}	// { dg-message "" }
};

struct B {};

int main()
{
  A a;
  a = B();		// { dg-error "no match" }
  // { dg-message "candidate" "candidate note" { target *-*-* } 16 }
  a = 1.0;		// { dg-error "ambiguous" }
  // { dg-message "candidate" "candidate note" { target *-*-* } 18 }
}