summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/cast3.rs
blob: 1de95687039b43a0cabe8106393a8a20901fcf26 (plain)
1
2
3
4
5
6
fn main() {
    let a = "foo\0";
    let b = a as *const str;
    let c = b as *const i8;
    // { dg-warning "unused name" "" { target *-*-* } .-1 }
}