]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/check-args-on-fn-err.rs
Rollup merge of #106714 - Ezrashaw:remove-e0490, r=davidtwco
[rust.git] / tests / ui / typeck / check-args-on-fn-err.rs
1 fn main() {
2     unknown(1, |glyf| {
3         //~^ ERROR: cannot find function `unknown` in this scope
4         let actual = glyf;
5     });
6 }