Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

9 lines
175 B
Plaintext

// RUN: not %{ispc} --target=host --nowrap --nostdlib %s -o - 2>&1 | FileCheck %s
// CHECK: Error: Ignoring redeclaration of symbol "a"
void foo() {
int a;
int a;
}