summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/issue-87274-paren-parent.rs
blob: 0141c5a252f6aa2095e39bcb4b254d0cc00acc34 (plain)
1
2
3
4
5
6
7
8
9
// 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() {}