PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / rtti / typeid1.C
blobe26517576b9b053e835e3f2c33e9e413a12f889b
1 #include <typeinfo>
3 struct A {
4   virtual ~A() {}
5 };
7 int main() {
8    A* a = new A;
9    typeid(*a).name();