blob: 595954b9167b5123f98ea3f54284077e7ed1c37b [file] [log] [blame]
// { dg-do assemble }
template <int I>
struct S1 { };
template <class T>
struct S2 {
enum { x = 3 };
void f(S1<x>&);
};
template <class T>
void S2<T>::f(S1<x>&)
{
}