]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/traits/trait-alias/trait-alias-object-fail.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / traits / trait-alias / trait-alias-object-fail.stderr
index 4cad710789899d0171472a730b4df3758f9b1504..1f54e03ee6e58a90cf2c98caae19c039133fad24 100644 (file)
@@ -1,15 +1,15 @@
-error[E0038]: the trait `std::cmp::Eq` cannot be made into an object
+error[E0038]: the trait `Eq` cannot be made into an object
   --> $DIR/trait-alias-object-fail.rs:7:13
    |
 LL |     let _: &dyn EqAlias = &123;
-   |             ^^^^^^^^^^^ the trait `std::cmp::Eq` cannot be made into an object
+   |             ^^^^^^^^^^^ the trait `Eq` cannot be made into an object
    | 
   ::: $SRC_DIR/core/src/cmp.rs:LL:COL
    |
 LL | pub trait Eq: PartialEq<Self> {
    |               --------------- the trait cannot be made into an object because it uses `Self` as a type parameter in this
 
-error[E0191]: the value of the associated type `Item` (from trait `std::iter::Iterator`) must be specified
+error[E0191]: the value of the associated type `Item` (from trait `Iterator`) must be specified
   --> $DIR/trait-alias-object-fail.rs:9:17
    |
 LL |     let _: &dyn IteratorAlias = &vec![123].into_iter();