rust/src/test/ui/issues/issue-42467.rs
2019-07-03 06:30:28 +09:00

25 lines
415 B
Rust

// build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]
struct Foo<T>(T);
struct IntoIter<T>(T);
impl<'a, T: 'a> Iterator for IntoIter<T> {
type Item = ();
fn next(&mut self) -> Option<()> {
None
}
}
impl<T> IntoIterator for Foo<T> {
type Item = ();
type IntoIter = IntoIter<T>;
fn into_iter(self) -> IntoIter<T> {
IntoIter(self.0)
}
}
fn main() {}