mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
582 B
Plaintext
16 lines
582 B
Plaintext
error[E0277]: the trait bound `NonConstImpl: ~const ConstDefaultFn` is not satisfied
|
|
--> $DIR/const-default-method-bodies.rs:24:18
|
|
|
|
|
LL | NonConstImpl.a();
|
|
| ^ the trait `~const ConstDefaultFn` is not implemented for `NonConstImpl`
|
|
|
|
|
note: the trait `ConstDefaultFn` is implemented for `NonConstImpl`, but that implementation is not `const`
|
|
--> $DIR/const-default-method-bodies.rs:24:5
|
|
|
|
|
LL | NonConstImpl.a();
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|