blob: b826ca66c683a409756422ca860f96114dd979f8 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/issue-19109.rs:4:5
|
LL | fn function(t: &mut dyn Trait) {
| - help: try adding a return type: `-> *mut dyn Trait`
LL | t as *mut dyn Trait
| ^^^^^^^^^^^^^^^^^^^ expected (), found *-ptr
|
= note: expected type `()`
found type `*mut dyn Trait`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.