diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/pch/uninst.C')
-rw-r--r-- | gcc/testsuite/g++.dg/pch/uninst.C | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/pch/uninst.C b/gcc/testsuite/g++.dg/pch/uninst.C new file mode 100644 index 000000000..b7cd8bfc2 --- /dev/null +++ b/gcc/testsuite/g++.dg/pch/uninst.C @@ -0,0 +1,8 @@ +#include "uninst.H" + +template <class Type> void FOO() { } + +int main() { + FOO<char>(); // stage 2 needs this + return min<unsigned long>(5, 0); +} |