1 // { dg-do compile }
2 
3 // PR c++/20028
4 
5 // We used to crash when referencing TYPE_SIZE_UNIT of the messed-up
6 // type used for x, because it was not initialized.
7 
8 class Foo;
9 
10 template <typename T> class Foo { }; // { dg-error "not a template" }
11 
12 Foo<int> x; // { dg-error "not a template|incomplete type" }
13