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

10 lines
180 B
Plaintext

// RUN: %{ispc} --target=host --nostdlib --nowrap -o - --emit-llvm-text %s 2>&1 | FileCheck %s
// CHECK-NOT: Error: Assertion failed
void main()
{
bool<3> a;
bool<3> b;
a && b;
}