2020-02-23 05:54:00 -06:00
|
|
|
error: `default` is not followed by an item
|
2020-06-16 03:06:35 -05:00
|
|
|
--> $DIR/default.rs:23:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | default pub fn foo<T: Default>() -> T { T::default() }
|
2020-02-22 21:49:26 -06:00
|
|
|
| ^^^^^^^ the `default` qualifier
|
|
|
|
|
|
|
|
|
= note: only `fn`, `const`, `type`, or `impl` items may be prefixed by `default`
|
2020-02-22 01:16:39 -06:00
|
|
|
|
|
|
|
error: non-item in item list
|
2020-06-16 03:06:35 -05:00
|
|
|
--> $DIR/default.rs:23:13
|
2020-02-22 01:16:39 -06:00
|
|
|
|
|
|
|
|
LL | impl Foo for u32 {
|
|
|
|
| - item list starts here
|
|
|
|
LL | default pub fn foo<T: Default>() -> T { T::default() }
|
|
|
|
| ^^^ non-item starts here
|
|
|
|
...
|
|
|
|
LL | }
|
|
|
|
| - item list ends here
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2019-01-06 09:33:05 -06:00
|
|
|
error[E0449]: unnecessary visibility qualifier
|
2020-06-16 03:06:35 -05:00
|
|
|
--> $DIR/default.rs:17:5
|
2019-01-06 09:33:05 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | pub default fn foo<T: Default>() -> T {
|
2019-01-06 09:33:05 -06:00
|
|
|
| ^^^ `pub` not permitted here because it's implied
|
|
|
|
|
2020-06-16 03:06:35 -05:00
|
|
|
warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
|
|
|
|
--> $DIR/default.rs:3:12
|
|
|
|
|
|
|
|
|
LL | #![feature(specialization)]
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information
|
2020-10-13 18:35:32 -05:00
|
|
|
= help: consider using `min_specialization` instead, which is more stable and complete
|
2022-09-18 10:55:36 -05:00
|
|
|
= note: `#[warn(incomplete_features)]` on by default
|
2020-06-16 03:06:35 -05:00
|
|
|
|
2019-01-06 09:33:05 -06:00
|
|
|
error[E0046]: not all trait items implemented, missing: `foo`
|
2020-06-16 03:06:35 -05:00
|
|
|
--> $DIR/default.rs:22:1
|
2019-01-06 09:33:05 -06:00
|
|
|
|
|
|
|
|
LL | fn foo<T: Default>() -> T;
|
|
|
|
| -------------------------- `foo` from trait
|
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | impl Foo for u32 {
|
2019-01-06 09:33:05 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^ missing `foo` in implementation
|
|
|
|
|
2020-06-16 03:06:35 -05:00
|
|
|
error: aborting due to 4 previous errors; 1 warning emitted
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0046, E0449.
|
2019-01-06 09:33:05 -06:00
|
|
|
For more information about an error, try `rustc --explain E0046`.
|