Files
Ink-Shader-Language/test/semant/pass_and_access_struct_fields_in_functions.golden
2024-06-09 21:34:23 +02:00

16 lines
349 B
Plaintext

scope (global) [
[foo] : (f : Foo) -> float
[vertex__vs_main] : ()
[Foo] : {some_data : float}
scope (Foo) [
[some_data] : float
]
scope (foo) [
[f] : Foo
]
scope (vertex__vs_main) [
[d] : float
[f] : Foo
]
]