fn f(a : i32, b : i32, c : i32) -> i32 { return ((a * b) + c); } [[stage(compute)]] fn main() { ignore(f(1, 2, 3)); }