blob: 06112d257c5625b216ee9cb5bf87fb50ae73a13e [file] [log] [blame]
// Build don't link:
//test 2
struct A {};
void f()
{
struct A; // ERROR - forward ref
throw *(new A); // ERROR - invalid use of undefined type
}