summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cast/cast-to-infer-ty.rs
blob: 053ebb621a7fe58012786e2f25f5a8374a2d10c1 (plain)
1
2
3
4
5
6
7
8
// run-pass
// Check that we allow a cast to `_` so long as the target type can be
// inferred elsewhere.

pub fn main() {
    let i: *const i32 = 0 as _;
    assert!(i.is_null());
}