]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-is_sorted.stderr
Override `Iterator::is_sorted_by` in `slice::Iter` impl
[rust.git] / src / test / ui / feature-gates / feature-gate-is_sorted.stderr
1 error[E0658]: use of unstable library feature 'is_sorted': new API (see issue #53485)
2   --> $DIR/feature-gate-is_sorted.rs:3:33
3    |
4 LL |     assert!([1, 2, 2, 9].iter().is_sorted());
5    |                                 ^^^^^^^^^
6    |
7    = help: add #![feature(is_sorted)] to the crate attributes to enable
8
9 error[E0658]: use of unstable library feature 'is_sorted': new API (see issue #53485)
10   --> $DIR/feature-gate-is_sorted.rs:5:39
11    |
12 LL |     assert!(![-2i32, -1, 0, 3].iter().is_sorted_by_key(|n| n.abs()));
13    |                                       ^^^^^^^^^^^^^^^^
14    |
15    = help: add #![feature(is_sorted)] to the crate attributes to enable
16
17 error[E0658]: use of unstable library feature 'is_sorted': new API (see issue #53485)
18   --> $DIR/feature-gate-is_sorted.rs:9:26
19    |
20 LL |     assert!([1, 2, 2, 9].is_sorted());
21    |                          ^^^^^^^^^
22    |
23    = help: add #![feature(is_sorted)] to the crate attributes to enable
24
25 error[E0658]: use of unstable library feature 'is_sorted': new API (see issue #53485)
26   --> $DIR/feature-gate-is_sorted.rs:11:32
27    |
28 LL |     assert!(![-2i32, -1, 0, 3].is_sorted_by_key(|n| n.abs()));
29    |                                ^^^^^^^^^^^^^^^^
30    |
31    = help: add #![feature(is_sorted)] to the crate attributes to enable
32
33 error: aborting due to 4 previous errors
34
35 For more information about this error, try `rustc --explain E0658`.