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
8class Foo;
9
10template <typename T> class Foo { }; // { dg-error "not a template type" }
11
12Foo<int> x; // { dg-error "not a template|incomplete type" }
13