rust/tests/ui/borrowck/issue-28934.rs

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

26 lines
645 B
Rust
Raw Normal View History

// Regression test: issue had to do with "givens" in region inference,
// which were not being considered during the contraction phase.
2020-04-16 01:50:32 -05:00
//@ run-fail
//@ error-pattern:explicit panic
2020-05-07 10:39:02 -05:00
//@ ignore-emscripten no processes
struct Parser<'i: 't, 't>(&'i u8, &'t u8);
impl<'i, 't> Parser<'i, 't> {
fn parse_nested_block<F, T>(&mut self, parse: F) -> Result<T, ()>
2016-05-26 21:39:36 -05:00
where for<'tt> F: FnOnce(&mut Parser<'i, 'tt>) -> T
{
panic!()
}
2016-05-26 21:39:36 -05:00
fn expect_exhausted(&mut self) -> Result<(), ()> {
Ok(())
}
}
fn main() {
let x = 0u8;
Parser(&x, &x).parse_nested_block(|input| input.expect_exhausted()).unwrap();
}