Files
rust/tests/ui/traits/next-solver/closure-signature-inference.rs
2023-12-14 18:41:23 +00:00

16 lines
190 B
Rust

// compile-flags: -Znext-solver
// check-pass
struct A;
impl A {
fn hi(self) {}
}
fn hello() -> Result<(A,), ()> {
Err(())
}
fn main() {
let x = hello().map(|(x,)| x.hi());
}