Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/tests/lit-tests/2544.ispc
2025-05-18 13:04:45 +08:00

10 lines
202 B
Plaintext

// RUN: not %{ispc} --target=host --nowrap -o - %s 2>&1 | FileCheck %s
// CHECK: Error: syntax error
// CHECK-NOT: Please file a bug report
void sum(int x)
{
print("sum: %", reduce_add(x:1:0));
}