2014-10-31 09:20:25 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-01-05 00:28:53 -06:00
|
|
|
#![feature(unsafe_destructor)]
|
2014-10-31 09:20:25 -05:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[unsafe_destructor]
|
|
|
|
impl<T> Drop for Foo<T> {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
self.next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn foo<'a>(_: Foo<&'a ()>) {}
|
|
|
|
|
|
|
|
pub fn main() {}
|