rust/src/test/ui/rfc-2632-const-trait-impl/inherent-impl.stderr
Dylan MacKenzie 23ea42cfd1 Update tests
2020-01-20 01:28:10 -08:00

31 lines
688 B
Plaintext

error: inherent impls cannot be `const`
--> $DIR/inherent-impl.rs:9:1
|
LL | impl const S {}
| ^^^^^^^^^^^^^^^
|
= note: only trait implementations may be annotated with `const`
error: inherent impls cannot be `const`
--> $DIR/inherent-impl.rs:13:1
|
LL | impl const T {}
| ^^^^^^^^^^^^^^^
|
= note: only trait implementations may be annotated with `const`
error: const trait impls are not yet implemented
--> $DIR/inherent-impl.rs:9:1
|
LL | impl const S {}
| ^^^^^^^^^^^^^^^
error: const trait impls are not yet implemented
--> $DIR/inherent-impl.rs:13:1
|
LL | impl const T {}
| ^^^^^^^^^^^^^^^
error: aborting due to 4 previous errors