Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
gcc
/
gcc
/
testsuite
/
g++.dg
/
debug
/
template2.C
blob: 9f5bcd9b1013436fe9bc0772622f8fc12dd408a3 [
file
] [
log
] [
blame
]
// PR c++/57545
template
<
typename
T
,
long
unsigned
int
N
>
struct
array
{
T data
[
N
];
};
template
<
typename
T
>
struct
derived
{
typedef
long
unsigned
int
size_type
;
static
const
size_type n
=
42
;
array
<
int
,
n
>
a
;
};