aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/pch/uninst.C
blob: b7cd8bfc256de2fe8afede13f934a313627fb8c4 (plain)
1
2
3
4
5
6
7
8
#include "uninst.H"

template <class Type> void FOO() {   }

int  main() {
  		FOO<char>(); 			// stage 2 needs this
		return min<unsigned long>(5, 0);
}