rust/tests/ui/specialization/specialization-no-default.s...

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

69 lines
2.6 KiB
Plaintext
Raw Normal View History

2020-06-16 16:06:35 +08:00
warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
2020-05-17 16:22:48 +08:00
--> $DIR/specialization-no-default.rs:1:12
|
LL | #![feature(specialization)]
| ^^^^^^^^^^^^^^
|
= 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
2022-09-18 23:55:36 +08:00
= note: `#[warn(incomplete_features)]` on by default
2020-05-17 16:22:48 +08:00
2018-08-08 20:28:26 +08:00
error[E0520]: `foo` specializes an item from a parent `impl`, but that item is not marked `default`
2019-08-10 01:43:30 +08:00
--> $DIR/specialization-no-default.rs:20:5
2018-08-08 20:28:26 +08:00
|
2022-02-13 23:27:59 +08:00
LL | impl<T> Foo for T {
| ----------------- parent `impl` is here
2018-08-08 20:28:26 +08:00
...
2022-02-13 23:27:59 +08:00
LL | fn foo(&self) {}
2023-02-13 02:49:54 +08:00
| ^^^^^^^^^^^^^ cannot specialize default item `foo`
2018-08-08 20:28:26 +08:00
|
= 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-10 01:43:30 +08:00
--> $DIR/specialization-no-default.rs:23:5
2018-08-08 20:28:26 +08:00
|
2022-02-13 23:27:59 +08:00
LL | impl<T> Foo for T {
| ----------------- parent `impl` is here
2018-08-08 20:28:26 +08:00
...
2022-02-13 23:27:59 +08:00
LL | fn bar(&self) {}
2023-02-13 02:49:54 +08:00
| ^^^^^^^^^^^^^ cannot specialize default item `bar`
2018-08-08 20:28:26 +08:00
|
= 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-10 01:43:30 +08:00
--> $DIR/specialization-no-default.rs:37:5
2018-08-08 20:28:26 +08:00
|
2022-02-13 23:27:59 +08:00
LL | impl<T> Bar for T {
| ----------------- parent `impl` is here
2018-08-08 20:28:26 +08:00
...
2022-02-13 23:27:59 +08:00
LL | type T = ();
2023-02-13 02:49:54 +08:00
| ^^^^^^ cannot specialize default item `T`
2018-08-08 20:28:26 +08:00
|
= 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-10 01:43:30 +08:00
--> $DIR/specialization-no-default.rs:55:5
2018-08-08 20:28:26 +08:00
|
2022-02-13 23:27:59 +08:00
LL | impl<T: Clone> Baz for T {
| ------------------------ parent `impl` is here
2018-08-08 20:28:26 +08:00
...
2022-02-13 23:27:59 +08:00
LL | fn baz(&self) {}
2023-02-13 02:49:54 +08:00
| ^^^^^^^^^^^^^ cannot specialize default item `baz`
2018-08-08 20:28:26 +08:00
|
= 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-10 01:43:30 +08:00
--> $DIR/specialization-no-default.rs:74:5
2018-08-08 20:28:26 +08:00
|
2022-02-13 23:27:59 +08:00
LL | impl<T: Clone> Redundant for T {
| ------------------------------ parent `impl` is here
2018-08-08 20:28:26 +08:00
...
2022-02-13 23:27:59 +08:00
LL | default fn redundant(&self) {}
2023-02-13 02:49:54 +08:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot specialize default item `redundant`
2018-08-08 20:28:26 +08:00
|
= note: to specialize, `redundant` in the parent `impl` must be marked `default`
2020-05-17 16:22:48 +08:00
error: aborting due to 5 previous errors; 1 warning emitted
2018-08-08 20:28:26 +08:00
For more information about this error, try `rustc --explain E0520`.