Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
static27.C
blob: 0b63967e35214bd4d1f358509ccd1790488d83db [
file
] [
log
] [
blame
]
// PR c++/28235
template
<typename>
struct
A
{
static
const
bool
i
=
true
;
template
<
bool
=
i
>
struct
B
{};
B
<>
b
;
};
void
f
()
{
A
<int>
a1
,
a2
;
a1
.
b
=
a2
.
b
;
}