1// { dg-do assemble  }
2// Origin: Mark Mitchell <mark@codesourcery.com>
3
4template <class T>
5void f ()
6{
7  __extension__ ( { if (3); });
8}
9
10template void f<int>();
11