2024-10-20 19:49:11 +00:00
|
|
|
error[E0277]: the trait bound `T: ~const Bar` is not satisfied
|
2024-06-30 17:08:45 +00:00
|
|
|
--> $DIR/trait-where-clause-const.rs:22:5
|
2023-07-29 08:20:25 +00:00
|
|
|
|
|
|
|
|
|
LL | T::b();
|
2024-10-20 19:49:11 +00:00
|
|
|
| ^^^^^^
|
2023-07-29 08:20:25 +00:00
|
|
|
|
2024-10-20 19:49:11 +00:00
|
|
|
error[E0277]: the trait bound `T: ~const Bar` is not satisfied
|
|
|
|
|
--> $DIR/trait-where-clause-const.rs:24:5
|
2023-07-29 08:20:25 +00:00
|
|
|
|
|
2023-08-13 13:59:19 +00:00
|
|
|
LL | T::c::<T>();
|
2024-10-20 19:49:11 +00:00
|
|
|
| ^^^^^^^^^^^
|
2023-07-29 08:20:25 +00:00
|
|
|
|
2024-10-20 19:49:11 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2023-07-29 08:20:25 +00:00
|
|
|
|
2024-10-20 19:49:11 +00:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|