Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.21.0/tests/lit-tests/1872.ispc
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; }