blob: 59364be33cff4b986b97b9d80adb1d098402e25a [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);
return 0;
}
int i = bar<10>("1234");