summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/explicit4.C
blob: 0f3bc623a53e0b64e6060a803c9e80997bc1203a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Negative explicit conv test.
// { dg-options "-std=c++0x" }

struct A {
  A(const A&, int = 0);		// { dg-message "note" }
};
struct B
{
  explicit operator A();
};

int main()
{
  B b;
  (A(b));			// OK
  (A(b,1));			// { dg-error "no match" }
  // { dg-message "candidate" "candidate note" { target *-*-* } 16 }
}