1const Foo = struct {}; 2fn f(Foo: i32) void {} 3export fn entry() void { 4 f(1234); 5} 6 7// error 8// 9// :2:6: error: function parameter shadows declaration of 'Foo' 10// :1:1: note: declared here