blob: 178c10da5968f5542fcaf71a6040a83b9cd3fe39 [file] [log] [blame] [edit]
//@ build-pass
// Regression test for an overly aggressive assertion in #130855.
fn main() {
let subtype: &(dyn for<'a> Fn(&'a i32) -> &'a i32) = &|x| x;
let supertype: &(dyn Fn(&'static i32) -> &'static i32) = subtype;
}