blob: 35aca8be25beb58351fa55c0175ed4878dd7a595 [file] [log] [blame]
// Issue #8624. Test for reborrowing with 3 levels, not just two.
fn copy_borrowed_ptr<'a, 'b, 'c>(p: &'a mut &'b mut &'c mut isize) -> &'b mut isize {
&mut ***p //~ ERROR lifetime mismatch [E0623]
}
fn main() {
}