mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
230 B
Rust
12 lines
230 B
Rust
|
// check-pass
|
||
|
|
||
|
// RSplit<T, P> previously required T: Clone in order to be Clone
|
||
|
|
||
|
struct NotClone;
|
||
|
|
||
|
fn main() {
|
||
|
let elements = [NotClone, NotClone, NotClone];
|
||
|
let rsplit = elements.rsplit(|_| false);
|
||
|
rsplit.clone();
|
||
|
}
|