Sign in
rust
/
rust
/
bf838717a4a68ecc23d08b9c17c19d71e7da8afe
/
.
/
tests
/
ui
/
numeric
/
len.rs
blob: a725409882059e2a121d4b09be5d0ec74b741d71 [
file
] [
log
] [
blame
]
fn
main
()
{
let
array
=
[
1
,
2
,
3
];
test
(
array
.
len
());
//~ ERROR mismatched types
}
fn
test
(
length
:
u32
)
{
println
!(
"{}"
,
length
);
}