aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/conversion4.C
blob: 7caca196d0af06526af520025e3c3903dd1e9280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:
struct A {
  A (int);
};
struct B {
  operator int () { return 1; }
};
void f (const A&);
void g()
{
  B b;
  f ((A) b);
  f (A (b)); // gets bogus error - functional cast treated differently from C style
}