1test "type coercion - const qualification" { 2 var a: i32 = 1; 3 const b: *i32 = &a; 4 foo(b); 5} 6 7fn foo(_: *const i32) void {} 8 9// test