DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / functions-closures / fn-type-infer.rs
12345678910
//@ run-pass #![allow(unused_variables)] pub fn main() { // We should be able to type infer inside of ||s. let _f = || { let i = 10; }; }