brintos

brintos / llvm-project-archived public Read only

0
0
Text · 146 B · 702dfdf Raw
15 lines · c
1// Test identical code folding handling.2#include <stdio.h>3 4int foo() {5  return 0;6}7 8int bar() {9  return 0;10}11 12int main() {13  return foo();14}15