]> git.lizzy.rs Git - rust.git/blob - tests/ui/stability-attribute/generics-default-stability-trait.stderr
Rollup merge of #107091 - clubby789:infer-ftl-missing-dollar, r=compiler-errors
[rust.git] / tests / ui / stability-attribute / generics-default-stability-trait.stderr
1 error[E0658]: use of unstable library feature 'unstable_default'
2   --> $DIR/generics-default-stability-trait.rs:16:13
3    |
4 LL | impl Trait1<usize> for S {
5    |             ^^^^^
6    |
7    = help: add `#![feature(unstable_default)]` to the crate attributes to enable
8
9 error[E0658]: use of unstable library feature 'unstable_default'
10   --> $DIR/generics-default-stability-trait.rs:20:13
11    |
12 LL | impl Trait1<isize> for S {
13    |             ^^^^^
14    |
15    = help: add `#![feature(unstable_default)]` to the crate attributes to enable
16
17 error[E0658]: use of unstable library feature 'unstable_default'
18   --> $DIR/generics-default-stability-trait.rs:24:13
19    |
20 LL | impl Trait2<usize> for S {
21    |             ^^^^^
22    |
23    = help: add `#![feature(unstable_default)]` 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`.