summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/integer-literal-suffix-inference-2.rs
blob: 80248dc223dcc1d467603193c16f6f028c57f227 (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 ());
}