]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-10969.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-10969.rs
1 fn func(i: i32) {
2 i(); //~ERROR expected function, found `i32`
3 }
4 fn main() {
5 let i = 0i32;
6 i(); //~ERROR expected function, found `i32`
7 }