2024-02-16 20:02:50 +00:00
|
|
|
//@ compile-flags: --edition 2018
|
2020-04-17 12:07:44 +00:00
|
|
|
fn foo() -> Result<(), ()> {
|
|
|
|
Ok(try!()); //~ ERROR use of deprecated `try` macro
|
|
|
|
Ok(try!(Ok(()))) //~ ERROR use of deprecated `try` macro
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = foo();
|
|
|
|
}
|