OSDN Git Service

Fix PR c++/43704
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / sizeof8.C
1 // { dg-do compile }
2 // Testcase by: bangerth@dealii.org
3 // PR c++/11406: ICE
4
5 template <int> struct S{};
6
7 template <int N> S<sizeof(new double[N])> f() {}
8
9 template S<sizeof(void*)> f<2>();