Michael Goulet 38c05a68ee Adjust tests
2025-04-29 03:07:24 +00:00

11 lines
323 B
Rust

// This used to be a test for overflow handling + higher-ranked outlives
// in the new solver, but this test isn't expected to pass since WF preds
// are not coinductive anymore.
pub struct Bar
where
for<'a> &'a mut Self:;
//~^ ERROR overflow evaluating the requirement `for<'a> &'a mut Bar well-formed`
fn main() {}