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
/
alias-decl-73.C
blob
aae778646dccba8235ae23c4b35b5c39ee7b7528
1
// PR c++/100102
2
// { dg-do compile { target c++11 } }
3
4
template <bool B1> using a = int;
5
template <class T3, class T4> struct k {
6
static long o();
7
template <class T5> using n = a<bool(k::o)>;
8
n<int> q;
9
};