blob: 6221b97c13e7454dae42b86de0757f49f6505dcd [file] [log] [blame]
fn min_c73147() {
var res : i32 = min(1, 1);
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
min_c73147();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
min_c73147();
}
[[stage(compute)]]
fn compute_main() {
min_c73147();
}