summaryrefslogtreecommitdiffstats
path: root/tests/ui/object-safety/assoc_type_bounds_sized_others.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/object-safety/assoc_type_bounds_sized_others.stderr')
-rw-r--r--tests/ui/object-safety/assoc_type_bounds_sized_others.stderr21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ui/object-safety/assoc_type_bounds_sized_others.stderr b/tests/ui/object-safety/assoc_type_bounds_sized_others.stderr
new file mode 100644
index 000000000..e4c44334b
--- /dev/null
+++ b/tests/ui/object-safety/assoc_type_bounds_sized_others.stderr
@@ -0,0 +1,21 @@
+error[E0191]: the value of the associated type `Bop` (from trait `Foo`) must be specified
+ --> $DIR/assoc_type_bounds_sized_others.rs:12:16
+ |
+LL | type Bop;
+ | -------- `Bop` defined here
+...
+LL | fn foo(_: &dyn Foo) {}
+ | ^^^ help: specify the associated type: `Foo<Bop = Type>`
+
+error[E0191]: the value of the associated type `Bop` (from trait `Bar`) must be specified
+ --> $DIR/assoc_type_bounds_sized_others.rs:22:16
+ |
+LL | type Bop;
+ | -------- `Bop` defined here
+...
+LL | fn bar(_: &dyn Bar) {}
+ | ^^^ help: specify the associated type: `Bar<Bop = Type>`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0191`.