OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / array7.C
1 // PR c++/16246
2
3 template <typename T> void foo (T, T); 
4  
5 template <unsigned N, unsigned M>  
6 int bar( const char(&val)[M] ) 
7
8   foo (N,M); 
9
10  
11 int i = bar<10>("1234");