brintos

brintos / llvm-project-archived public Read only

0
0
Text · 164 B · 2a84f1d Raw
16 lines · cpp
1#include "prevent_false_instantiations.h"2 3void func1() {4  DO_SOMETHING();5}6 7void func2() {8  DO_SOMETHING();9}10 11int main() {12  func1();13  func2();14  return 0;15}16