1 // Test that we don't emit the type_info for a polymorphic class other than
2 // with the vtable.
3 
4 struct A {
5   virtual ~A();
6 };
7 
f()8 void f ()
9 {
10   throw A();
11 }
12 
13 // { dg-final { scan-assembler-dem-not {\ntypeinfo for A[: \t\n]} } }
14