blob: 7dcdeb4cbe814c2542569442c13a88a94ea0a5b9 [file] [log] [blame]
// Build don't link:
struct S {
S(int);
S(int); // ERROR - already declared
~S();
~S(); // ERROR - already declared
};