Files
2025-05-18 13:04:45 +08:00

9 lines
250 B
Plaintext

// RUN: not %{ispc} %s --target=host --nowrap > %t 2>&1
// RUN: FileCheck --input-file=%t %s
// CHECK: Error:
// CHECK-NOT: Please file a bug
struct s {
double d;
};
export uniform double foo(uniform s &x, uniform double y) { return x - y + y; }