blob: 9b65366b969a53502a5577d0780600c31528d0ba [file] [log] [blame] [edit]
error[E0277]: the trait bound `A: const Deref` is not satisfied
--> $DIR/issue-25901.rs:4:24
|
LL | static S: &'static B = &A;
| ^^
|
help: make the `impl` of trait `Deref` `const`
|
LL | impl const Deref for A {
| +++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.