blob: 3f0bfc7729fba85b98bcc9ad1cab966389b64505 [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)
{ i = 3; }
int i;
};
int main()
{
S s;
s.g(3);
}