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() {}
}