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