summaryrefslogtreecommitdiff
path: root/test/profile/Inputs/extern_template.cpp
blob: 98c6c16b4a8a8baedfc30e2e80c330a2da88ea8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define DEF
#include "extern_template.h"
#undef DEF
extern int bar();
extern int foo();
extern Test<int> TO;
int main() {
  foo();
  int R = bar();

  if (R != 10)
    return 1;
  return 0;
}