about summary refs log tree commit diff
path: root/src/test/ui/traits/trait-alias-object.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/trait-alias-object.stderr')
-rw-r--r--src/test/ui/traits/trait-alias-object.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/ui/traits/trait-alias-object.stderr b/src/test/ui/traits/trait-alias-object.stderr
new file mode 100644
index 00000000000..6b7b322a53d
--- /dev/null
+++ b/src/test/ui/traits/trait-alias-object.stderr
@@ -0,0 +1,18 @@
+error[E0038]: the trait `EqAlias` cannot be made into an object
+  --> $DIR/trait-alias-object.rs:17:13
+   |
+LL |     let _: &dyn EqAlias = &123;
+   |             ^^^^^^^^^^^ the trait `EqAlias` cannot be made into an object
+   |
+   = note: the trait cannot use `Self` as a type parameter in the supertraits or where-clauses
+
+error[E0191]: the value of the associated type `Item` (from the trait `std::iter::Iterator`) must be specified
+  --> $DIR/trait-alias-object.rs:18:13
+   |
+LL |     let _: &dyn IteratorAlias = &vec![123].into_iter();
+   |             ^^^^^^^^^^^^^^^^^ missing associated type `Item` value
+
+error: aborting due to 2 previous errors
+
+Some errors occurred: E0038, E0191.
+For more information about an error, try `rustc --explain E0038`.