]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2632-const-trait-impl/const-default-method-bodies.stderr
Rollup merge of #100556 - Alex-Velez:patch-1, r=scottmcm
[rust.git] / src / test / ui / rfc-2632-const-trait-impl / const-default-method-bodies.stderr
1 error[E0277]: the trait bound `NonConstImpl: ~const ConstDefaultFn` is not satisfied
2   --> $DIR/const-default-method-bodies.rs:24:18
3    |
4 LL |     NonConstImpl.a();
5    |                  ^ the trait `~const ConstDefaultFn` is not implemented for `NonConstImpl`
6    |
7 note: the trait `ConstDefaultFn` is implemented for `NonConstImpl`, but that implementation is not `const`
8   --> $DIR/const-default-method-bodies.rs:24:18
9    |
10 LL |     NonConstImpl.a();
11    |                  ^
12 help: consider introducing a `where` clause, but there might be an alternative better way to express this requirement
13    |
14 LL | const fn test() where NonConstImpl: ~const ConstDefaultFn {
15    |                 +++++++++++++++++++++++++++++++++++++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.