summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/fn_trait_refs.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/fn_trait_refs.stderr')
-rw-r--r--tests/ui/consts/fn_trait_refs.stderr74
1 files changed, 69 insertions, 5 deletions
diff --git a/tests/ui/consts/fn_trait_refs.stderr b/tests/ui/consts/fn_trait_refs.stderr
index bfebf6670..e5ebe1d85 100644
--- a/tests/ui/consts/fn_trait_refs.stderr
+++ b/tests/ui/consts/fn_trait_refs.stderr
@@ -4,12 +4,76 @@ error[E0635]: unknown feature `const_fn_trait_ref_impls`
LL | #![feature(const_fn_trait_ref_impls)]
| ^^^^^^^^^^^^^^^^^^^^^^^^
-error[E0635]: unknown feature `const_cmp`
- --> $DIR/fn_trait_refs.rs:8:12
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:15:15
|
-LL | #![feature(const_cmp)]
- | ^^^^^^^^^
+LL | T: ~const Fn<()> + ~const Destruct,
+ | ^^^^^^
-error: aborting due to 2 previous errors
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:15:15
+ |
+LL | T: ~const Fn<()> + ~const Destruct,
+ | ^^^^^^
+ |
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
+
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:22:15
+ |
+LL | T: ~const FnMut<()> + ~const Destruct,
+ | ^^^^^^^^^
+
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:22:15
+ |
+LL | T: ~const FnMut<()> + ~const Destruct,
+ | ^^^^^^^^^
+ |
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
+
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:29:15
+ |
+LL | T: ~const FnOnce<()>,
+ | ^^^^^^^^^^
+
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:29:15
+ |
+LL | T: ~const FnOnce<()>,
+ | ^^^^^^^^^^
+ |
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
+
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:36:15
+ |
+LL | T: ~const Fn<()> + ~const Destruct,
+ | ^^^^^^
+
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:36:15
+ |
+LL | T: ~const Fn<()> + ~const Destruct,
+ | ^^^^^^
+ |
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
+
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:50:15
+ |
+LL | T: ~const FnMut<()> + ~const Destruct,
+ | ^^^^^^^^^
+
+error: ~const can only be applied to `#[const_trait]` traits
+ --> $DIR/fn_trait_refs.rs:50:15
+ |
+LL | T: ~const FnMut<()> + ~const Destruct,
+ | ^^^^^^^^^
+ |
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
+
+error: aborting due to 11 previous errors
For more information about this error, try `rustc --explain E0635`.