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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
defarg9.C
blob
de7528f6120321a2305d5dbf588b4213745d761c
1
// PR c++/28048
2
3
template<typename T> struct Boom;
4
5
template<typename T, bool D = Boom<T>::Internal::Value> // <--ICE
6
struct Foo
7
{
8
};
9
10
template<typename T> struct Boom
11
{
12
struct Internal
13
{
14
static const bool Value = false;
15
};
16
};