rust/tests/ui/mir/mir-inlining/ice-issue-77306-1.rs

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

18 lines
298 B
Rust
Raw Normal View History

//@ run-pass
//@ compile-flags:-Zmir-opt-level=3
2020-10-04 09:40:06 -05:00
// Previously ICEd because we did not normalize during inlining,
// see https://github.com/rust-lang/rust/pull/77306 for more discussion.
2020-10-04 09:40:06 -05:00
pub fn write() {
create()()
}
pub fn create() -> impl FnOnce() {
|| ()
}
fn main() {
write();
}