mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
202 B
Rust
10 lines
202 B
Rust
// 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() {}
|