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
PR c++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nullptr34.C
blob
2fc70a1dd969ecb5e75416818ade386d06bacfe8
1
// PR c++/67216
2
// { dg-do compile { target c++11 } }
3
4
struct s {
5
s( long ) {}
6
};
7
8
struct t {
9
t( void * ) {}
10
};
11
12
void foo(s) {}
13
void foo(t) {}
14
15
int main() {
16
foo(false);
17
}