Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.21.0/tests/lit-tests/1849.ispc
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

12 lines
464 B
Plaintext

//; RUN: not %{ispc} --target=host %s --nowrap 2>&1 | FileCheck %s
//; CHECK: Error: SOA type parameter "soa_arg0" is illegal in an exported function.
//; CHECK: Error: SOA type parameter "soa_arg1" is illegal in an exported function.
//; CHECK: Error: SOA type parameter "soa_arg2" is illegal in an exported function.
typedef struct rgb {
uint8 r, g, b;
} t_rgb;
export void foo(soa<4> t_rgb soa_arg0[], soa<4> t_rgb *soa_arg1, soa<4> t_rgb **soa_arg2) {}