Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
static23.C
blob: b28400a64d2fb6160054ae9903babe5c8e6102eb [
file
] [
log
] [
blame
]
// PR c++/26266
template
<typename>
struct
A
{
static
const
int
i
=
1
;
};
template
<typename>
struct
B
{
static
const
int
j
=
A
<char>
::
i
;
static
const
int
k
=
int
(
j
);
int
x
[
k
];
};
B
<char>
b
;