]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-unboxed-closures-method-calls.stderr
MetadataOnlyCodegenBackend: remove `is_inline` call
[rust.git] / src / test / ui / feature-gates / feature-gate-unboxed-closures-method-calls.stderr
1 error[E0658]: use of unstable library feature 'fn_traits' (see issue #29625)
2   --> $DIR/feature-gate-unboxed-closures-method-calls.rs:4:7
3    |
4 LL |     f.call(()); //~ ERROR use of unstable library feature 'fn_traits'
5    |       ^^^^
6    |
7    = help: add #![feature(fn_traits)] to the crate attributes to enable
8
9 error[E0658]: use of unstable library feature 'fn_traits' (see issue #29625)
10   --> $DIR/feature-gate-unboxed-closures-method-calls.rs:5:7
11    |
12 LL |     f.call_mut(()); //~ ERROR use of unstable library feature 'fn_traits'
13    |       ^^^^^^^^
14    |
15    = help: add #![feature(fn_traits)] to the crate attributes to enable
16
17 error[E0658]: use of unstable library feature 'fn_traits' (see issue #29625)
18   --> $DIR/feature-gate-unboxed-closures-method-calls.rs:6:7
19    |
20 LL |     f.call_once(()); //~ ERROR use of unstable library feature 'fn_traits'
21    |       ^^^^^^^^^
22    |
23    = help: add #![feature(fn_traits)] to the crate attributes to enable
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0658`.