]> git.lizzy.rs Git - rust.git/blob - src/test/ui/invalid_dispatch_from_dyn_impls.stderr
Move some tests with compare-mode=nll output to revisions
[rust.git] / src / test / ui / invalid_dispatch_from_dyn_impls.stderr
1 error[E0378]: the trait `DispatchFromDyn` may only be implemented for structs containing the field being coerced, ZST fields with 1 byte alignment, and nothing else
2   --> $DIR/invalid_dispatch_from_dyn_impls.rs:10:1
3    |
4 LL | / impl<T, U> DispatchFromDyn<WrapperWithExtraField<U>> for WrapperWithExtraField<T>
5 LL | | where
6 LL | |     T: DispatchFromDyn<U>,
7 LL | | {}
8    | |__^
9    |
10    = note: extra field `1` of type `i32` is not allowed
11
12 error[E0378]: implementing the `DispatchFromDyn` trait requires multiple coercions
13   --> $DIR/invalid_dispatch_from_dyn_impls.rs:21:1
14    |
15 LL | / impl<T: ?Sized, U: ?Sized> DispatchFromDyn<MultiplePointers<U>> for MultiplePointers<T>
16 LL | | where
17 LL | |     T: Unsize<U>,
18 LL | | {}
19    | |__^
20    |
21    = note: the trait `DispatchFromDyn` may only be implemented for a coercion between structures with a single field being coerced
22    = note: currently, 2 fields need coercions: `ptr1` (`*const T` to `*const U`), `ptr2` (`*const T` to `*const U`)
23
24 error[E0378]: the trait `DispatchFromDyn` may only be implemented for a coercion between structures with a single field being coerced, none found
25   --> $DIR/invalid_dispatch_from_dyn_impls.rs:31:1
26    |
27 LL | impl<T: ?Sized, U: ?Sized> DispatchFromDyn<NothingToCoerce<T>> for NothingToCoerce<U> {}
28    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
29
30 error[E0378]: structs implementing `DispatchFromDyn` may not have `#[repr(packed)]` or `#[repr(C)]`
31   --> $DIR/invalid_dispatch_from_dyn_impls.rs:37:1
32    |
33 LL | / impl<T: ?Sized, U: ?Sized> DispatchFromDyn<HasReprC<U>> for HasReprC<T>
34 LL | | where
35 LL | |     T: Unsize<U>,
36 LL | | {}
37    | |__^
38
39 error[E0378]: the trait `DispatchFromDyn` may only be implemented for structs containing the field being coerced, ZST fields with 1 byte alignment, and nothing else
40   --> $DIR/invalid_dispatch_from_dyn_impls.rs:46:1
41    |
42 LL | / impl<T: ?Sized, U: ?Sized> DispatchFromDyn<OverAligned<U>> for OverAligned<T>
43 LL | |     where
44 LL | |         T: Unsize<U>,
45 LL | | {}
46    | |__^
47    |
48    = note: extra field `1` of type `OverAlignedZst` is not allowed
49
50 error: aborting due to 5 previous errors
51
52 For more information about this error, try `rustc --explain E0378`.