]> git.lizzy.rs Git - rust.git/blob - tests/pretty/issue-31073.rs
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[rust.git] / tests / pretty / issue-31073.rs
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 }