rust/src/test/ui/rfc-2632-const-trait-impl/inherent-impl.stderr

23 lines
571 B
Plaintext
Raw Normal View History

2020-01-13 22:30:34 -06:00
error: inherent impls cannot be `const`
--> $DIR/inherent-impl.rs:9:6
2020-01-13 22:30:34 -06:00
|
LL | impl const S {}
| ^^^^^ ^ inherent impl for this type
| |
| `const` because of this
2020-01-13 22:30:34 -06:00
|
= note: only trait implementations may be annotated with `const`
error: inherent impls cannot be `const`
--> $DIR/inherent-impl.rs:12:6
2020-01-02 18:31:30 -06:00
|
LL | impl const T {}
| ^^^^^ ^ inherent impl for this type
| |
| `const` because of this
2020-01-13 22:30:34 -06:00
|
= note: only trait implementations may be annotated with `const`
error: aborting due to 2 previous errors
2020-01-02 18:31:30 -06:00