mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
8 lines
149 B
Rust
8 lines
149 B
Rust
//@ run-pass
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
fn main() {
|
|
let _a: *const isize = 3 as *const isize;
|
|
let _a: *mut isize = 3 as *mut isize;
|
|
}
|