repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
array7.C
blob
1fb130f9961675183601a53f820c2c0e5bd03a0d
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");