diff options
Diffstat (limited to 'tests/ui/issues/issue-25901.stderr')
-rw-r--r-- | tests/ui/issues/issue-25901.stderr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-25901.stderr b/tests/ui/issues/issue-25901.stderr new file mode 100644 index 000000000..b9cac3222 --- /dev/null +++ b/tests/ui/issues/issue-25901.stderr @@ -0,0 +1,15 @@ +error[E0277]: the trait bound `A: Deref` is not satisfied + --> $DIR/issue-25901.rs:4:24 + | +LL | static S: &'static B = &A; + | ^^ the trait `~const Deref` is not implemented for `A` + | +note: the trait `Deref` is implemented for `A`, but that implementation is not `const` + --> $DIR/issue-25901.rs:4:24 + | +LL | static S: &'static B = &A; + | ^^ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0277`. |