blob: 4aafc69548664d1c7924522251dcaa209d2f28ff [file] [log] [blame]
extern "C" void abort();
template <class T>
void f(T)
{
struct S {
int i;
} s;
s.i = 3;
if (s.i != 3)
abort();
}
int main()
{
f(7);
}