Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/tests/lit-tests/err-break.ispc
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

8 lines
167 B
Plaintext

// RUN: not %{ispc} --target=host --nowrap --nostdlib %s -o - 2>&1 | FileCheck %s
// CHECK: Error: "break" statement is illegal outside of
void foo() {
break;
}