blob: 265c523f816f3c551664a486b1110c17a59a1c9a [file] [log] [blame]
// PRMS Id: 6056
struct Foo {
Foo() { } // ERROR - candidate
Foo(int i = 25) { } // ERROR - candidate
};
int main()
{
Foo* f1 = new Foo(); // ERROR - ambiguous
}