]> git.proxmox.com Git - rustc.git/blob - src/test/pretty/issue-31073.pp
Update upstream source from tag 'upstream/1.33.0+dfsg1'
[rustc.git] / src / test / pretty / issue-31073.pp
1 // pp-exact:issue-31073.pp
2
3 fn main() {
4 fn f1(x: i32, y: i32) -> i32 { y }
5 let f: fn(_, i32) -> i32 = f1;
6 f(1, 2);
7 }