summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-use-uninitialized-in-cast.rs
blob: a355a546dc6bf1030da6649b25cf61f07f9d88d3 (plain)
1
2
3
4
5
6
7
8
// Check that we detect unused values that are cast to other things.
// The problem was specified to casting to `*`, as creating unsafe
// pointers was not being fully checked. Issue #20791.

fn main() {
    let x: &i32;
    let y = x as *const i32; //~ ERROR [E0381]
}