Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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));
}