]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/self/arbitrary-self-types-not-object-safe.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / self / arbitrary-self-types-not-object-safe.stderr
index e6eba377a9578c9178a282268ee3c866e92c556e..353da8fd20b22131a60f2ec2c8db5184d9a9ddc6 100644 (file)
@@ -1,5 +1,5 @@
 error[E0038]: the trait `Foo` cannot be made into an object
-  --> $DIR/arbitrary-self-types-not-object-safe.rs:31:32
+  --> $DIR/arbitrary-self-types-not-object-safe.rs:29:32
    |
 LL |     fn foo(self: &Rc<Self>) -> usize;
    |        --- method `foo`'s `self` parameter cannot be dispatched on
@@ -8,7 +8,7 @@ LL |     let x = Rc::new(5usize) as Rc<dyn Foo>;
    |                                ^^^^^^^^^^^ the trait `Foo` cannot be made into an object
 
 error[E0038]: the trait `Foo` cannot be made into an object
-  --> $DIR/arbitrary-self-types-not-object-safe.rs:31:13
+  --> $DIR/arbitrary-self-types-not-object-safe.rs:29:13
    |
 LL |     fn foo(self: &Rc<Self>) -> usize;
    |        --- method `foo`'s `self` parameter cannot be dispatched on