Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
);