blob: 3bb1cd3dd9917edb36b8a9db7126bd1bd88c9f04 [file] [log] [blame]
// Build don't run:
// GROUPS passed templates membertemplates
extern "C" int printf(const char*, ...);
struct S
{
template <class U>
void g(U u)
{ this; }
};
int main()
{
S s;
s.g(3);
}