]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-54966.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-54966.rs
1 // issue-54966: ICE returning an unknown type with impl FnMut
2
3 fn generate_duration() -> Oper<impl FnMut()> {}
4 //~^ ERROR cannot find type `Oper` in this scope
5
6 fn main() {}