rust/tests/ui/suggestions/remove-question-symbol-with-paren.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
175 B
Rust
Raw Normal View History

// https://github.com/rust-lang/rust/issues/114392
fn foo() -> Option<()> {
let x = Some(());
(x?)
//~^ ERROR `?` operator has incompatible types
}
fn main() {}