Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
numbers-arithmetic
/
integer-literal-suffix-inference-2.rs
blob: 406ed4704581b405aa82619bdc9161951cbde784 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
fn
foo
(
_
:
*
const
())
{}
fn
main
()
{
let
a
=
3
;
foo
(&
a
as
*
const
_
as
*
const
());
}