1fn sin_fc8bc4() {
2  var res : vec2<f32> = sin(vec2<f32>());
3}
4
5[[stage(vertex)]]
6fn vertex_main() -> [[builtin(position)]] vec4<f32> {
7  sin_fc8bc4();
8  return vec4<f32>();
9}
10
11[[stage(fragment)]]
12fn fragment_main() {
13  sin_fc8bc4();
14}
15
16[[stage(compute), workgroup_size(1)]]
17fn compute_main() {
18  sin_fc8bc4();
19}
20