FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.dg / abi / rtti1.C
blobf17d88aad264ab0567d1ed8008aef75077f7f8a1
1 // Test that we don't emit the type_info for a polymorphic class other than
2 // with the vtable.
4 struct A {
5   virtual ~A();
6 };
8 void f ()
10   throw A();
13 // { dg-final { scan-assembler-dem-not {\ntypeinfo for A[: \t\n]} } }