Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / dependent-name1.C
blob60ab34498fde05b7342270c91726f26c005f678d
1 // { dg-do compile }
3 // Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
5 // PR c++/10347: Dependent type checking of array new expression
7 void bar (int *);
8     
9 template <int> void foo() {
10   bar(new int[1]);