rust/tests/ui/numbers-arithmetic/integer-literal-suffix-inference-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
137 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
fn foo(_: *const ()) {}
fn main() {
let a = 3;
foo(&a as *const _ as *const ());
}