rust/tests/ui/kinds-of-primitive-impl.stderr

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

37 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-03-15 10:32:52 -05:00
error[E0390]: cannot define inherent `impl` for primitive types
--> $DIR/kinds-of-primitive-impl.rs:1:6
2020-12-06 14:30:07 -06:00
|
2022-03-15 10:32:52 -05:00
LL | impl u8 {
| ^^
2020-12-06 14:30:07 -06:00
|
2022-03-18 05:44:55 -05:00
= help: consider using an extension trait instead
2020-12-06 14:30:07 -06:00
2022-03-15 10:32:52 -05:00
error[E0390]: cannot define inherent `impl` for primitive types
--> $DIR/kinds-of-primitive-impl.rs:6:6
2020-12-06 14:30:07 -06:00
|
2022-03-15 10:32:52 -05:00
LL | impl str {
| ^^^
2020-12-06 14:30:07 -06:00
|
2022-03-18 05:44:55 -05:00
= help: consider using an extension trait instead
2020-12-06 14:30:07 -06:00
2022-03-15 10:32:52 -05:00
error[E0390]: cannot define inherent `impl` for primitive types
--> $DIR/kinds-of-primitive-impl.rs:12:6
2020-12-06 14:30:07 -06:00
|
2022-03-15 10:32:52 -05:00
LL | impl char {
| ^^^^
2020-12-06 14:30:07 -06:00
|
2022-03-18 05:44:55 -05:00
= help: consider using an extension trait instead
2020-12-06 14:30:07 -06:00
error[E0390]: cannot define inherent `impl` for primitive types
--> $DIR/kinds-of-primitive-impl.rs:21:6
|
LL | impl &MyType {
| ^^^^^^^
|
= 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 14:30:07 -06:00
For more information about this error, try `rustc --explain E0390`.