blob: a63ffcff732ee0c0c68d71b2b8f73a0f3f08d3d3 [file] [log] [blame]
fn f() -> isize {
let x: isize;
return x; //~ ERROR E0381
}
fn main() { f(); }