Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / array7.C
blob1fb130f9961675183601a53f820c2c0e5bd03a0d
1 // PR c++/16246
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
11 int i = bar<10>("1234");