summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/temporary5.C
blob: 5faad9f8ef2531d4713666ba57eb11c3df43a358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PRMS Id: 6604
// Old bug: Scoped constructor call is not properly recognized as a functional cast
// But after DR 147 A::A() is a constructor call, not a functional cast.

int c;

struct A {
  A() { ++c; }
  ~A() { --c; }
  operator int () { return 1; }
};

int main ()
{
  A a;
  a.A::A();			// { dg-error "" }
  A::A();			// { dg-message "" }
  return c;
}