mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
256 B
Rust
14 lines
256 B
Rust
// run-pass
|
|
trait Collection where for<'a> &'a Self: IntoIterator {
|
|
fn my_iter(&self) -> <&Self as IntoIterator>::IntoIter {
|
|
self.into_iter()
|
|
}
|
|
}
|
|
|
|
impl<T> Collection for [T] { }
|
|
|
|
fn main() {
|
|
let v = [0usize];
|
|
let _ = v.my_iter();
|
|
}
|