]> git.lizzy.rs Git - rust.git/blob - tests/pretty/issue-31073.rs
Auto merge of #107529 - Zoxc:inline-tweak-profile, r=cjgillot
[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 }