[multiple changes]
[official-gcc.git] / gcc / testsuite / g++.dg / template / pr35240.C
blob1972cf73b87fea4ee5088cc6c5a655a9ad05b56a
1 // PR c++/35240
2 // { dg-do compile }
5 template<int> struct A {};
7 template<int N> A<sizeof(new int[N][N])> foo(); // { dg-message "unimplemented" }
9 void bar()
11   foo<1>();