1// { dg-do run  }
2// PRMS Id: 6604
3// Bug: Scoped constructor call is not properly recognized as a functional cast
4
5int c;
6
7struct A {
8  A() { ++c; }
9  ~A() { --c; }
10  operator int () { return 1; }
11};
12
13int main ()
14{
15  A::A();
16  return c;
17}
18