1 2 3 4 5 6 7 8 9 10
pub fn main() void { foo(10, 20); } fn foo(x: u8, y: u8) void { _ = x; _ = y; } // run //