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

5 lines
238 B
Plaintext

//; RUN: not %{ispc} --target=host %s --nowrap 2>&1 | FileCheck %s
//; CHECK: Error: Member operator "." can't be applied to pointer type "varying float<4>". Did you mean to use "->"?
float foo(float<4> foo_arg[4]) { return foo_arg.a; }