Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
pr20118.C
blob: 94e000a6f6886f2e23078d923a31f06107e6f8fa [
file
] [
log
] [
blame
]
// { dg-do compile }
// { dg-options "-fshow-column" }
template
<
typename
t
>
struct
foo
{
static
const
int
i
;
};
const
int
foo
<bool>
::
i
=
5
;
// { dg-error "11:specializing member .foo<bool>::i. requires .template<>. syntax" }
int
main
()
{
return
0
;
}