repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
fntmpdefarg8.C
blob
8d9b2d26f0117363ac10a790604e087f9aae0643
1
// PR c++/80227
2
// { dg-do compile { target c++11 } }
3
4
template <class T>
5
int foo (T);
6
7
template <class T, class U = T [sizeof (T) - 5]>
8
int foo (T, U* = 0);
9
10
int i = foo (123);