llvm-project/clang/test/CodeGen/extern-block-var.c

7 lines
75 B
C

// RUN: clang %s -emit-llvm -o %t
int f() {
extern int a;
return a;
}