blob: aafab5d86b8655d36b2645dd0e96152674ea26f0 [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
use std::marker;
pub struct Foo<T>(marker::PhantomData<T>);
impl<T> Iterator for Foo<T> {
type Item = T;
fn next(&mut self) -> Option<T> {
None
}
}
impl<T> Drop for Foo<T> {
fn drop(&mut self) {
self.next();
}
}
pub fn foo<'a>(_: Foo<&'a ()>) {}
pub fn main() {}