mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
267 B
Rust
14 lines
267 B
Rust
// run-pass
|
|
// Test that the type variable in the type(`Vec<_>`) of a closed over
|
|
// variable does not interfere with type inference.
|
|
|
|
fn f<F: FnMut()>(mut f: F) {
|
|
f();
|
|
}
|
|
|
|
fn main() {
|
|
let mut v: Vec<_> = vec![];
|
|
f(|| v.push(0));
|
|
assert_eq!(v, [0]);
|
|
}
|