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 15:32:52 +00:00
error[E0390]: cannot define inherent `impl` for primitive types
--> $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 {
| ^^^^^^^
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
--> $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 {
| ^^^^^^^^
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
--> $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 {
| ^^^^^^^^^
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
error[E0390]: cannot define inherent `impl` for primitive types
--> $DIR/kinds-of-primitive-impl.rs:21:1
|
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 20:30:07 +00:00
For more information about this error, try `rustc --explain E0390`.