rust/tests/ui/higher-ranked/trait-bounds/issue-59311.rs

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

23 lines
560 B
Rust
Raw Normal View History

2020-07-28 15:32:28 -05:00
// Regression test for #59311. The test is taken from
// rust-lang/rust/issues/71546#issuecomment-620638437
// as they seem to have the same cause.
2020-08-05 15:21:03 -05:00
// FIXME: It's not clear that this code ought to report
// an error, but the regression test is here to ensure
// that it does not ICE. See discussion on #74889 for details.
2020-07-28 15:32:28 -05:00
pub trait T {
fn t<F: Fn()>(&self, _: F) {}
}
pub fn crash<V>(v: &V)
where
for<'a> &'a V: T + 'static,
{
v.t(|| {});
2022-04-01 12:13:25 -05:00
//~^ ERROR: higher-ranked lifetime error
//~| ERROR: higher-ranked lifetime error
2020-07-28 15:32:28 -05:00
}
fn main() {}