blob: 6a24d2e254b21a0b09970d081b3a7e5a33388ccb [file] [log] [blame]
// { dg-do link }
// GROUPS passed templates membertemplates
extern "C" int printf(const char*, ...);
template <class X>
struct S
{
template <class U>
void g(U u) { this; }
};
int main()
{
S<char*> s;
s.g(3);
}