|
1 | 1 | error[E0658]: use of unstable library feature 'is_sorted': new API (see issue #53485)
|
2 |
| - --> $DIR/feature-gate-is_sorted.rs:12:33 |
| 2 | + --> $DIR/feature-gate-is_sorted.rs:13:33 |
3 | 3 | |
|
4 | 4 | LL | assert!([1, 2, 2, 9].iter().is_sorted());
|
5 | 5 | | ^^^^^^^^^
|
6 | 6 | |
|
7 | 7 | = help: add #![feature(is_sorted)] to the crate attributes to enable
|
8 | 8 |
|
9 | 9 | error[E0658]: use of unstable library feature 'is_sorted': new API (see issue #53485)
|
10 |
| - --> $DIR/feature-gate-is_sorted.rs:14:39 |
| 10 | + --> $DIR/feature-gate-is_sorted.rs:15:39 |
11 | 11 | |
|
12 | 12 | LL | assert!(![-2i32, -1, 0, 3].iter().is_sorted_by_key(|n| n.abs()));
|
13 | 13 | | ^^^^^^^^^^^^^^^^
|
14 | 14 | |
|
15 | 15 | = help: add #![feature(is_sorted)] to the crate attributes to enable
|
16 | 16 |
|
17 |
| -error: aborting due to 2 previous errors |
| 17 | +error[E0658]: use of unstable library feature 'is_sorted': new API (see issue #53485) |
| 18 | + --> $DIR/feature-gate-is_sorted.rs:19: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:21: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 |
18 | 34 |
|
19 | 35 | For more information about this error, try `rustc --explain E0658`.
|
0 commit comments