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-42.C
blob
09a75e45a3de331f4b84667828edfac6905497f3
1
// PR c++/59200
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
static constexpr bool value = true;
7
};
8
9
template<typename T>
10
struct B
11
{
12
template<typename U>
13
using C = A;
14
};
15
16
template<typename T>
17
template<typename U>
18
const bool B<T>::C<U>::value; // { dg-error "too many" }