]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2632-const-trait-impl/cross-crate.stocknc.stderr
Auto merge of #100845 - timvermeulen:iter_compare, r=scottmcm
[rust.git] / src / test / ui / rfc-2632-const-trait-impl / cross-crate.stocknc.stderr
1 error[E0277]: the trait bound `cross_crate::NonConst: cross_crate::MyTrait` is not satisfied
2   --> $DIR/cross-crate.rs:17:5
3    |
4 LL |     NonConst.func();
5    |     ^^^^^^^^ ---- required by a bound introduced by this call
6    |     |
7    |     the trait `~const cross_crate::MyTrait` is not implemented for `cross_crate::NonConst`
8    |
9 note: the trait `cross_crate::MyTrait` is implemented for `cross_crate::NonConst`, but that implementation is not `const`
10   --> $DIR/cross-crate.rs:17:5
11    |
12 LL |     NonConst.func();
13    |     ^^^^^^^^
14 help: consider introducing a `where` clause, but there might be an alternative better way to express this requirement
15    |
16 LL | const fn const_context() where cross_crate::NonConst: ~const cross_crate::MyTrait {
17    |                          ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0277`.