Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
init11.C
blob: ef337c0be600bb8482b565a632ddffe08dd5b61a [
file
] [
log
] [
blame
]
// PR c++/79607
// { dg-do compile { target c++11 } }
template
<
typename
T
>
struct
A
{
static
const
int
i
=
int
{
T
{}};
};
A
<int>
a
;