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

13 lines
267 B
Plaintext

// RUN: not %{ispc} --nostdlib --nowrap --target=host %s > %t 2>&1
// RUN: FileCheck --input-file=%t %s
// CHECK-NOT: FATAL ERROR: Unhandled signal sent to process
// CHECK: has no member named "f"
struct D {
int h;
};
struct D d;
int foo() {
return d.f;
}