brintos

brintos / llvm-project-archived public Read only

0
0
Text · 192 B · 98c6c16 Raw
15 lines · cpp
1#define DEF2#include "extern_template.h"3#undef DEF4extern int bar();5extern int foo();6extern Test<int> TO;7int main() {8  foo();9  int R = bar();10 11  if (R != 10)12    return 1;13  return 0;14}15