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

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

13 lines
263 B
Rust
Raw Normal View History

// run-pass
2014-11-07 03:33:47 +00:00
// Test that we don't panic on a RefCell borrow conflict in certain
// code paths involving unboxed closures.
// pretty-expanded FIXME #23616
2014-11-07 03:33:47 +00:00
// aux-build:issue-18711.rs
extern crate issue_18711 as issue;
2014-11-07 03:33:47 +00:00
fn main() {
(|| issue::inner(()))();
2014-11-07 03:33:47 +00:00
}