Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr58674.C
blob: fe97c6de970490626708f218f8e93403d56dad11 [
file
] [
log
] [
blame
]
// PR c++/58674
// { dg-do compile { target c++11 } }
template
<int>
struct
A
{};
template
<
int
N
>
using
B
=
A
<
N
>;
template
<
typename
T
>
struct
C
{
B
<
T
::
i
>
b
;
// { dg-error "not usable" }
};
struct
X
{
static
const
int
i
;
};
C
<
X
>
c
;