rust/tests/ui/nll/user-annotations/closure-sig.rs
2023-01-11 09:32:08 +00:00

16 lines
253 B
Rust

// This test fails if #104478 is fixed before #104477.
// check-pass
struct Printer<'a, 'b>(&'a (), &'b ());
impl Printer<'_, '_> {
fn test(self) {
let clo = |_: &'_ Self| {};
clo(&self);
clo(&self);
}
}
fn main() {}