]> git.lizzy.rs Git - rust.git/blob - tests/pretty/issue-31073.pp
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / 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 }