rust/tests/ui/issues/issue-41053.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
417 B
Rust
Raw Normal View History

// run-pass
// aux-build:issue-41053.rs
pub trait Trait { fn foo(&self) {} }
pub struct Foo;
impl Iterator for Foo {
2019-05-28 13:47:21 -05:00
type Item = Box<dyn Trait>;
fn next(&mut self) -> Option<Box<dyn Trait>> {
extern crate issue_41053;
impl ::Trait for issue_41053::Test {
fn foo(&self) {}
}
Some(Box::new(issue_41053::Test))
}
}
fn main() {
Foo.next().unwrap().foo();
}