DEBSOURCES
Skip Quicknav
sources / rustc / 1.87.0%2Bdfsg1-1 / tests / ui / typeck / issue-88803-call-expr-method.rs
123456789
//@ run-rustfix fn main() { let a = Some(42); println!( "The value is {}.", (a.unwrap)() //~ERROR [E0615] ); }