blob: 03c9c071c9b100216c152352ee363975fa9f0961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// check-pass
use std::ops::Deref;
pub struct TypeFieldIterator<'a, T: 'a> {
_t: &'a T,
}
pub struct Type<Id, T> {
_types: Vec<(Id, T)>,
}
impl<'a, Id: 'a, T> Iterator for TypeFieldIterator<'a, T>
where T: Deref<Target = Type<Id, T>> {
type Item = &'a (Id, T);
fn next(&mut self) -> Option<&'a (Id, T)> {
|| self.next();
None
}
}
fn main() { }
|