Index: gcc/testsuite/g++.dg/pph/a0expinstnin.h |
=================================================================== |
--- gcc/testsuite/g++.dg/pph/a0expinstnin.h (revision 0) |
+++ gcc/testsuite/g++.dg/pph/a0expinstnin.h (revision 0) |
@@ -0,0 +1,12 @@ |
+#ifndef A0EXPINSTNIN_H |
+#define A0EXPINSTNIN_H |
+ |
+template< typename T > |
+int function( T t ) |
+{ |
+ return t * 2; |
+} |
+ |
+template int function(int); |
+ |
+#endif |