blob: 1fb130f9961675183601a53f820c2c0e5bd03a0d [file] [log] [blame]
// PR c++/16246
template <typename T> void foo (T, T);
template <unsigned N, unsigned M>
int bar( const char(&val)[M] )
{
foo (N,M);
}
int i = bar<10>("1234");