Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
spec40.C
blob: 4e29944514f5636a14a4dbc5b94853ddb81dffe1 [
file
] [
log
] [
blame
]
// { dg-options "-fpermissive -w" }
namespace
N
{
template
<
typename
T
>
struct
S
{
void
f
()
{}
// { dg-bogus "from definition" }
};
}
namespace
K
{
template
<>
void
N
::
S
<char>
::
f
()
{}
}