468663ddbb
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
15 lines
192 B
C++
15 lines
192 B
C++
#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;
|
|
}
|