Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/tests/lit-tests/882.ispc
2025-05-18 13:04:45 +08: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;
}