rustc/tests/ui/mut/mut-cross-borrowing.rs
2023-08-02 10:33:26 +02:00

9 lines
116 B
Rust

fn f(_: &mut isize) {}
fn main() {
let mut x: Box<_> = Box::new(3);
f(x) //~ ERROR mismatched types
}