rust/tests/ui/lint/issue-87274-paren-parent.rs

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

10 lines
202 B
Rust
Raw Normal View History

// check-pass
// Tests that we properly lint at 'paren' expressions
fn foo() -> Result<(), String> {
(try!(Ok::<u8, String>(1))); //~ WARN use of deprecated macro `try`
Ok(())
}
fn main() {}