]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/numbers-arithmetic/integer-literal-suffix-inference-2.rs
New upstream version 1.37.0+dfsg1
[rustc.git] / src / test / run-pass / numbers-arithmetic / integer-literal-suffix-inference-2.rs
CommitLineData
b7449926 1// run-pass
c34b1796
AL
2// pretty-expanded FIXME #23616
3
1a4d82fc 4fn foo(_: *const ()) {}
223e47cc
LB
5
6fn main() {
1a4d82fc
JJ
7 let a = 3;
8 foo(&a as *const _ as *const ());
223e47cc 9}