Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
consts
/
issue-29927-1.rs
blob: a236e49137554d71b67d9ce662d57932f425e8b6 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
const
fn
f
()
->
usize
{
5
}
struct
A
{
field
:
usize
,
}
fn
main
()
{
let
_
=
[
0
;
f
()];
}