mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 01:10:36 +00:00
10 lines
203 B
Rust
10 lines
203 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() {}
|