• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #define DEF
2 #include "extern_template.h"
3 #undef DEF
4 extern int bar();
5 extern int foo();
6 extern Test<int> TO;
main()7 int main() {
8   foo();
9   int R = bar();
10 
11   if (R != 10)
12     return 1;
13   return 0;
14 }
15