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