Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
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
;
}