mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 21:47:15 +03:00
9 lines
192 B
Rust
9 lines
192 B
Rust
//! Regression test for https://github.com/rust-lang/rust/issues/28181
|
|
|
|
//@ run-pass
|
|
fn bar<F>(f: F) -> usize where F: Fn([usize; 1]) -> usize { f([2]) }
|
|
|
|
fn main() {
|
|
bar(|u| { u[0] });
|
|
}
|