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
/
temp_default5.C
blob
dd84d260ea792c444905b829f0d6a5151f963df1
1
// { dg-do compile { target c++11 } }
2
3
template <class Z = void, class T>
4
void Foo(T)
5
{
6
struct X {};
7
}
8
9
template <class T = int, typename U>
10
void f(const U&)
11
{
12
auto g = [] () {};
13
}