mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 12:42:39 +00:00
10 lines
137 B
Rust
10 lines
137 B
Rust
// run-pass
|
|
// pretty-expanded FIXME #23616
|
|
|
|
fn foo(_: *const ()) {}
|
|
|
|
fn main() {
|
|
let a = 3;
|
|
foo(&a as *const _ as *const ());
|
|
}
|