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
/
template
/
cond8.C
blob
a3bad7e7beda085340278cf5cc733bfe294cfa4e
1
// PR c++/51318
2
3
enum { e0, e1 };
4
5
template<bool B, int = B ? e0 : e1> struct A {};
6
7
template<typename T> struct B
8
{
9
A<T::X> a;
10
};