2020-07-29 05:32:28 +09: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-06 05:21:03 +09: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-29 05:32:28 +09:00
|
|
|
pub trait T {
|
|
|
|
fn t<F: Fn()>(&self, _: F) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn crash<V>(v: &V)
|
|
|
|
where
|
|
|
|
for<'a> &'a V: T + 'static,
|
|
|
|
{
|
2022-05-10 14:19:19 +00:00
|
|
|
v.t(|| {}); //~ ERROR: `&'a V` does not fulfill the required lifetime
|
2020-07-29 05:32:28 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|