rust/src/test/ui/specialization/specialization-no-default.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
2.8 KiB
Plaintext
Raw Normal View History

2020-06-16 08:06:35 +00:00
warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
2020-05-17 08:22:48 +00:00
--> $DIR/specialization-no-default.rs:1:12
|
LL | #![feature(specialization)]
| ^^^^^^^^^^^^^^
|
= note: `#[warn(incomplete_features)]` on by default
= note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information
= help: consider using `min_specialization` instead, which is more stable and complete
2020-05-17 08:22:48 +00:00
2018-08-08 12:28:26 +00:00
error[E0520]: `foo` specializes an item from a parent `impl`, but that item is not marked `default`
2019-08-09 17:43:30 +00:00
--> $DIR/specialization-no-default.rs:20:5
2018-08-08 12:28:26 +00:00
|
LL | / impl<T> Foo for T {
LL | | fn foo(&self) {}
LL | | fn bar(&self) {}
LL | | }
| |_- parent `impl` is here
...
2019-03-09 12:03:44 +00:00
LL | fn foo(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^ cannot specialize default item `foo`
|
= note: to specialize, `foo` in the parent `impl` must be marked `default`
error[E0520]: `bar` specializes an item from a parent `impl`, but that item is not marked `default`
2019-08-09 17:43:30 +00:00
--> $DIR/specialization-no-default.rs:23:5
2018-08-08 12:28:26 +00:00
|
LL | / impl<T> Foo for T {
LL | | fn foo(&self) {}
LL | | fn bar(&self) {}
LL | | }
| |_- parent `impl` is here
...
2019-03-09 12:03:44 +00:00
LL | fn bar(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^ cannot specialize default item `bar`
|
= note: to specialize, `bar` in the parent `impl` must be marked `default`
error[E0520]: `T` specializes an item from a parent `impl`, but that item is not marked `default`
2019-08-09 17:43:30 +00:00
--> $DIR/specialization-no-default.rs:37:5
2018-08-08 12:28:26 +00:00
|
LL | / impl<T> Bar for T {
LL | | type T = u8;
LL | | }
| |_- parent `impl` is here
...
2019-03-09 12:03:44 +00:00
LL | type T = ();
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^ cannot specialize default item `T`
|
= note: to specialize, `T` in the parent `impl` must be marked `default`
error[E0520]: `baz` specializes an item from a parent `impl`, but that item is not marked `default`
2019-08-09 17:43:30 +00:00
--> $DIR/specialization-no-default.rs:55:5
2018-08-08 12:28:26 +00:00
|
LL | / impl<T: Clone> Baz for T {
LL | | fn baz(&self) {}
LL | | }
| |_- parent `impl` is here
...
2019-03-09 12:03:44 +00:00
LL | fn baz(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^ cannot specialize default item `baz`
|
= note: to specialize, `baz` in the parent `impl` must be marked `default`
error[E0520]: `redundant` specializes an item from a parent `impl`, but that item is not marked `default`
2019-08-09 17:43:30 +00:00
--> $DIR/specialization-no-default.rs:74:5
2018-08-08 12:28:26 +00:00
|
LL | / impl<T: Clone> Redundant for T {
LL | | fn redundant(&self) {}
LL | | }
| |_- parent `impl` is here
...
2019-03-09 12:03:44 +00:00
LL | default fn redundant(&self) {}
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot specialize default item `redundant`
|
= note: to specialize, `redundant` in the parent `impl` must be marked `default`
2020-05-17 08:22:48 +00:00
error: aborting due to 5 previous errors; 1 warning emitted
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0520`.