brintos

brintos / llvm-project-archived public Read only

0
0
Text · 141 B · 810f803 Raw
15 lines · c
1void f();2 3inline int g() { return 0; }4 5template<typename T>6void h(T t) {}7 8template<>9void h(int t) {}10 11class A {12 public:13  void f();14};15