summaryrefslogtreecommitdiffstats
path: root/tests/ui/order-dependent-cast-inference.rs
blob: e666209b9129c5c449a21ff310aef778042cd581 (plain)
1
2
3
4
5
6
7
8
fn main() {
    // Tests case where inference fails due to the order in which casts are checked.
    // Ideally this would compile, see #48270.
    let x = &"hello";
    let mut y = 0 as *const _;
    //~^ ERROR cannot cast to a pointer of an unknown kind
    y = x as *const _;
}