]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mismatched_types/issue-19109.stderr
Rollup merge of #51786 - cuviper:stat64-pointers, r=Mark-Simulacrum
[rust.git] / src / test / ui / mismatched_types / issue-19109.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-19109.rs:14:5
3    |
4 LL | fn function(t: &mut Trait) {
5    |                            - help: try adding a return type: `-> *mut dyn Trait`
6 LL |     t as *mut Trait
7    |     ^^^^^^^^^^^^^^^ expected (), found *-ptr
8    |
9    = note: expected type `()`
10               found type `*mut dyn Trait`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.