2022-03-15 15:32:52 +00:00
|
|
|
error[E0390]: cannot define inherent `impl` for primitive types
|
2023-02-11 23:17:38 +00:00
|
|
|
--> $DIR/kinds-of-primitive-impl.rs:1:1
|
2020-12-06 20:30:07 +00:00
|
|
|
|
|
2022-03-15 15:32:52 +00:00
|
|
|
LL | impl u8 {
|
2023-02-11 23:17:38 +00:00
|
|
|
| ^^^^^^^
|
2020-12-06 20:30:07 +00:00
|
|
|
|
|
2022-03-18 10:44:55 +00:00
|
|
|
= help: consider using an extension trait instead
|
2020-12-06 20:30:07 +00:00
|
|
|
|
2022-03-15 15:32:52 +00:00
|
|
|
error[E0390]: cannot define inherent `impl` for primitive types
|
2023-02-11 23:17:38 +00:00
|
|
|
--> $DIR/kinds-of-primitive-impl.rs:6:1
|
2020-12-06 20:30:07 +00:00
|
|
|
|
|
2022-03-15 15:32:52 +00:00
|
|
|
LL | impl str {
|
2023-02-11 23:17:38 +00:00
|
|
|
| ^^^^^^^^
|
2020-12-06 20:30:07 +00:00
|
|
|
|
|
2022-03-18 10:44:55 +00:00
|
|
|
= help: consider using an extension trait instead
|
2020-12-06 20:30:07 +00:00
|
|
|
|
2022-03-15 15:32:52 +00:00
|
|
|
error[E0390]: cannot define inherent `impl` for primitive types
|
2023-02-11 23:17:38 +00:00
|
|
|
--> $DIR/kinds-of-primitive-impl.rs:12:1
|
2020-12-06 20:30:07 +00:00
|
|
|
|
|
2022-03-15 15:32:52 +00:00
|
|
|
LL | impl char {
|
2023-02-11 23:17:38 +00:00
|
|
|
| ^^^^^^^^^
|
2020-12-06 20:30:07 +00:00
|
|
|
|
|
2022-03-18 10:44:55 +00:00
|
|
|
= help: consider using an extension trait instead
|
2020-12-06 20:30:07 +00:00
|
|
|
|
2022-03-29 07:47:32 +00:00
|
|
|
error[E0390]: cannot define inherent `impl` for primitive types
|
2023-02-11 23:17:38 +00:00
|
|
|
--> $DIR/kinds-of-primitive-impl.rs:21:1
|
2022-03-29 07:47:32 +00:00
|
|
|
|
|
|
|
|
LL | impl &MyType {
|
2023-02-11 23:17:38 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2022-03-29 07:47:32 +00:00
|
|
|
|
|
|
|
|
= help: consider using an extension trait instead
|
|
|
|
= note: you could also try moving the reference to uses of `MyType` (such as `self`) within the implementation
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2020-12-06 20:30:07 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0390`.
|