|
1 | 1 | error[E0658]: use of unstable library feature 'unstable_default'
|
2 |
| - --> $DIR/generics-default-stability.rs:15:13 |
| 2 | + --> $DIR/generics-default-stability.rs:16:13 |
3 | 3 | |
|
4 | 4 | LL | impl Trait1<usize> for S {
|
5 | 5 | | ^^^^^
|
6 | 6 | |
|
7 | 7 | = help: add `#![feature(unstable_default)]` to the crate attributes to enable
|
8 | 8 |
|
9 | 9 | error[E0658]: use of unstable library feature 'unstable_default'
|
10 |
| - --> $DIR/generics-default-stability.rs:19:13 |
| 10 | + --> $DIR/generics-default-stability.rs:20:13 |
11 | 11 | |
|
12 | 12 | LL | impl Trait1<isize> for S {
|
13 | 13 | | ^^^^^
|
14 | 14 | |
|
15 | 15 | = help: add `#![feature(unstable_default)]` to the crate attributes to enable
|
16 | 16 |
|
17 | 17 | error[E0658]: use of unstable library feature 'unstable_default'
|
18 |
| - --> $DIR/generics-default-stability.rs:23:13 |
| 18 | + --> $DIR/generics-default-stability.rs:24:13 |
19 | 19 | |
|
20 | 20 | LL | impl Trait2<usize> for S {
|
21 | 21 | | ^^^^^
|
22 | 22 | |
|
23 | 23 | = help: add `#![feature(unstable_default)]` to the crate attributes to enable
|
24 | 24 |
|
25 |
| -error: aborting due to 3 previous errors |
| 25 | +error[E0658]: use of unstable library feature 'unstable_default' |
| 26 | + --> $DIR/generics-default-stability.rs:37:20 |
| 27 | + | |
| 28 | +LL | let _: Struct1<isize> = Struct1 { field: 1 }; |
| 29 | + | ^^^^^ |
| 30 | + | |
| 31 | + = help: add `#![feature(unstable_default)]` to the crate attributes to enable |
| 32 | + |
| 33 | +error[E0658]: use of unstable library feature 'unstable_default' |
| 34 | + --> $DIR/generics-default-stability.rs:41:20 |
| 35 | + | |
| 36 | +LL | let _: Struct1<usize> = STRUCT1; |
| 37 | + | ^^^^^ |
| 38 | + | |
| 39 | + = help: add `#![feature(unstable_default)]` to the crate attributes to enable |
| 40 | + |
| 41 | +error[E0658]: use of unstable library feature 'unstable_default' |
| 42 | + --> $DIR/generics-default-stability.rs:42:20 |
| 43 | + | |
| 44 | +LL | let _: Struct1<usize> = STRUCT1; |
| 45 | + | ^^^^^ |
| 46 | + | |
| 47 | + = help: add `#![feature(unstable_default)]` to the crate attributes to enable |
| 48 | + |
| 49 | +error: aborting due to 6 previous errors |
26 | 50 |
|
27 | 51 | For more information about this error, try `rustc --explain E0658`.
|
0 commit comments