]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-is_sorted.stderr
Add initial impl of is_sorted to Iterator
[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:12: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:14: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: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0658`.