repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* c-common.c (get_priority): Add check for
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
defarg.C
blob
833b98f06be2e96a86761a084003607070c62d5d
1
// { dg-do run }
2
template <class T>
3
void f(T t, int i = 10);
4
5
template <class T>
6
void f(T t, int i) {}
7
8
int main()
9
{
10
f(3);
11
}