blob: 5c3d1f7932b0ae12d55bb327701014e93f30b7cc [file] [log] [blame]
fn f(a : i32, b : i32, c : i32) -> i32 {
return ((a * b) + c);
}
@compute @workgroup_size(1)
fn main() {
_ = f(1, 2, 3);
}