2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
use std::marker;
|
|
|
|
|
|
|
|
pub struct Foo<T>(marker::PhantomData<T>);
|
2014-10-31 09:20:25 -05:00
|
|
|
|
2015-01-02 09:25:54 -06:00
|
|
|
impl<T> Iterator for Foo<T> {
|
|
|
|
type Item = T;
|
|
|
|
|
2014-10-31 09:20:25 -05:00
|
|
|
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() {}
|