about summary refs log tree commit diff
path: root/src/test/run-pass/new-unsafe-pointers.rs
blob: a80ef1410876ccae5ee498d02e020a5e13a1014f (plain)
1
2
3
4
5
6
// pretty-expanded FIXME #23616

fn main() {
    let _a: *const isize = 3 as *const isize;
    let _a: *mut isize = 3 as *mut isize;
}