rust/src/test/ui/issues/issue-54966.rs
2018-10-12 12:42:33 -04:00

6 lines
174 B
Rust

// issue-54966: ICE returning an unknown type with impl FnMut
fn generate_duration() -> Oper<impl FnMut()> {}
//~^ ERROR cannot find type `Oper` in this scope
fn main() {}