blob: 2fc70a1dd969ecb5e75416818ade386d06bacfe8 [file] [log] [blame]
// PR c++/67216
// { dg-do compile { target c++11 } }
struct s {
s( long ) {}
};
struct t {
t( void * ) {}
};
void foo(s) {}
void foo(t) {}
int main() {
foo(false);
}