Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
dependent2.C
blob: a0740d404a3516b7c0703eee1af90e9d0184af0f [
file
] [
log
] [
blame
]
// PR c++/88757
// { dg-do compile { target c++11 } }
template
<
class
T
>
struct
C
{
static
int
x
;
};
template
<
class
U
>
struct
S
{
static
const
int
size
=
1
;
};
template
<
class
T
>
int
C
<
T
>::
x
(
S
<
T
>::
size
);