Sign in
rust
/
rust
/
644250d8b628ff0aa85a025e596e2f370cd1d2e0
/
.
/
tests
/
ui
/
array-slice-vec
/
closure-in-array-len.rs
blob: ce13e0f160815dd0777b25285c58ad98ebfa066d [
file
]
//! regression test for <https://github.com/rust-lang/rust/issues/50600>
struct
Foo
(
fn
([
u8
;
|
x
:
u8
|
{}]),
//~ ERROR mismatched types
);
fn
main
()
{}