testsuite: fix PR111613 test
[official-gcc.git] / gcc / testsuite / g++.dg / template / sizeof11.C
blobb1d4f72c7712eabed9c70475a81f5bb5a88737b1
1 // PR c++/29435
3 template < class T > struct A {};
4 template < int> void g()
6   sizeof (A < int>);
9 template < class T > struct B;
10 template < int> void f()
12   sizeof (B<int>); // { dg-error "3:invalid application of .sizeof. to incomplete type" }