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
Add qdf24xx base tuning support.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
trailing11.C
blob
0c9e9081fbf85f705ad1398092c39a59939a7e02
1
// PR c++/65750
2
// { dg-do compile { target c++11 } }
3
4
template<typename T> struct F { };
5
6
class a
7
{
8
virtual auto f( F< void () > ) -> void;
9
virtual auto g( F< auto () -> void > ) -> void;
10
};
11
12
auto main() -> int { }