blob: b8284abaa684f7760c8c69466357efcafc1655b6 [file] [log] [blame]
// { dg-do assemble }
struct A1 {
explicit A1(int) { }
} a1(1);
struct A {
explicit A(int);
} a(1);
A::A(int) {
}
void foo(A a) {
foo(a);
foo(1); // { dg-error "" } not allowed
}