aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/crash50.C
blob: 02cf6c08431efaa28fe2e6cc62fa01c3b523cd4c (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T>
void f ()
{
  __extension__ ( { if (3); });
}

template void f<int>();