2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2014-11-06 19:33:47 -08:00
|
|
|
// Test that we don't panic on a RefCell borrow conflict in certain
|
|
|
|
// code paths involving unboxed closures.
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-11-06 19:33:47 -08:00
|
|
|
// aux-build:issue-18711.rs
|
2015-03-27 10:22:44 -07:00
|
|
|
extern crate issue_18711 as issue;
|
2014-11-06 19:33:47 -08:00
|
|
|
|
|
|
|
fn main() {
|
2015-02-01 12:44:15 -05:00
|
|
|
(|| issue::inner(()))();
|
2014-11-06 19:33:47 -08:00
|
|
|
}
|