summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mut/mut-cross-borrowing.rs
blob: 080faab73261925d810a1b1ede3cd465c07538ad (plain)
1
2
3
4
5
6
7
8
fn f(_: &mut isize) {}

fn main() {

    let mut x: Box<_> = Box::new(3);

    f(x)    //~ ERROR mismatched types
}