blob: 0b78fc1bb7fa2171e9410add6c211514ea7e9841 [file] [log] [blame]
fn func(i: i32) {
i(); //~ERROR expected function, found `i32`
}
fn main() {
let i = 0i32;
i(); //~ERROR expected function, found `i32`
}