summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-2632-const-trait-impl/cross-crate.gatednc.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rfc-2632-const-trait-impl/cross-crate.gatednc.stderr')
-rw-r--r--tests/ui/rfc-2632-const-trait-impl/cross-crate.gatednc.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/ui/rfc-2632-const-trait-impl/cross-crate.gatednc.stderr b/tests/ui/rfc-2632-const-trait-impl/cross-crate.gatednc.stderr
deleted file mode 100644
index 633b7cc25..000000000
--- a/tests/ui/rfc-2632-const-trait-impl/cross-crate.gatednc.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0277]: the trait bound `cross_crate::NonConst: ~const cross_crate::MyTrait` is not satisfied
- --> $DIR/cross-crate.rs:17:14
- |
-LL | NonConst.func();
- | ^^^^ the trait `~const cross_crate::MyTrait` is not implemented for `cross_crate::NonConst`
- |
-note: the trait `cross_crate::MyTrait` is implemented for `cross_crate::NonConst`, but that implementation is not `const`
- --> $DIR/cross-crate.rs:17:5
- |
-LL | NonConst.func();
- | ^^^^^^^^
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0277`.