summary refs log tree commit diff
path: root/tests/ui/numbers-arithmetic/integer-literal-suffix-inference-2.rs
blob: 406ed4704581b405aa82619bdc9161951cbde784 (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass
//@ pretty-expanded FIXME #23616

fn foo(_: *const ()) {}

fn main() {
    let a = 3;
    foo(&a as *const _ as *const ());
}