blob: e97ce6aa407ed15425bebd5c04afd7d62bbff68e [file] [log] [blame] [edit]
fn main() {
let bar;
fn baz(_x: isize) { }
baz(bar); //~ ERROR E0381
}