summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2632-const-trait-impl/assoc-type-const-bound-usage.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rfcs/rfc-2632-const-trait-impl/assoc-type-const-bound-usage.stderr')
-rw-r--r--tests/ui/rfcs/rfc-2632-const-trait-impl/assoc-type-const-bound-usage.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/rfcs/rfc-2632-const-trait-impl/assoc-type-const-bound-usage.stderr b/tests/ui/rfcs/rfc-2632-const-trait-impl/assoc-type-const-bound-usage.stderr
new file mode 100644
index 000000000..4fcfe9d47
--- /dev/null
+++ b/tests/ui/rfcs/rfc-2632-const-trait-impl/assoc-type-const-bound-usage.stderr
@@ -0,0 +1,14 @@
+error[E0277]: the trait bound `T: Foo` is not satisfied
+ --> $DIR/assoc-type-const-bound-usage.rs:12:5
+ |
+LL | <T as Foo>::Assoc::foo();
+ | ^^^^^^^^^^^^^^^^^ the trait `Foo` is not implemented for `T`
+ |
+help: consider further restricting this bound
+ |
+LL | const fn foo<T: ~const Foo + Foo>() {
+ | +++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.