mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
8 lines
148 B
Rust
8 lines
148 B
Rust
// compile-flags: -Ztrait-solver=next
|
|
// check-pass
|
|
|
|
fn main() {
|
|
let mut x: Vec<_> = vec![];
|
|
x.extend(Some(1i32).into_iter().map(|x| x));
|
|
}
|