DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-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; }; }