1 struct Foooo {
~FooooFoooo2   virtual ~Foooo () { }
3 };
4 
main(void)5 int main(void)
6 {
7   Foooo t;
8   return 0;
9 }
10