blob: d08b5d5887dcf77fe94dc4e8bad68281587cd9d5 [file] [log] [blame]
James Pricebb0496e2021-06-03 09:38:34 +00001struct tint_symbol {
2 float4 value : SV_Position;
3};
4
James Pricea5d73ce2021-08-04 22:15:28 +00005float4 main_inner() {
6 return float4(1.0f, 2.0f, 3.0f, 4.0f);
7}
8
James Pricebb0496e2021-06-03 09:38:34 +00009tint_symbol main() {
James Pricea5d73ce2021-08-04 22:15:28 +000010 const float4 inner_result = main_inner();
11 tint_symbol wrapper_result = (tint_symbol)0;
12 wrapper_result.value = inner_result;
13 return wrapper_result;
James Pricebb0496e2021-06-03 09:38:34 +000014}