Skip to content

Commit 4710f85

Browse files
committed
Add ui tests for issue 68590 and 72225
1 parent 8121d2e commit 4710f85

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// check-pass
2+
3+
// rust-lang/rust#68590: confusing diagnostics when reborrowing through DerefMut.
4+
5+
use std::cell::RefCell;
6+
7+
struct A;
8+
9+
struct S<'a> {
10+
a: &'a mut A,
11+
}
12+
13+
fn take_a(_: &mut A) {}
14+
15+
fn test<'a>(s: &RefCell<S<'a>>) {
16+
let mut guard = s.borrow_mut();
17+
take_a(guard.a);
18+
let _s2 = S { a: guard.a };
19+
}
20+
21+
fn main() {
22+
let a = &mut A;
23+
let s = RefCell::new(S { a });
24+
test(&s);
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// check-pass
2+
3+
// rust-lang/rust#72225: confusing diagnostics when calling FnMut through DerefMut.
4+
5+
use std::cell::RefCell;
6+
7+
struct S {
8+
f: Box<dyn FnMut()>
9+
}
10+
11+
fn test(s: &RefCell<S>) {
12+
let mut guard = s.borrow_mut();
13+
(guard.f)();
14+
}
15+
16+
fn main() {
17+
let s = RefCell::new(S {
18+
f: Box::new(|| ())
19+
});
20+
test(&s);
21+
}

0 commit comments

Comments
 (0)