rust/tests/ui/rust-2018/try-macro.fixed

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

19 lines
377 B
Rust
Raw Normal View History

2018-09-10 21:14:30 +00:00
// Test that `try!` macros are rewritten.
// run-rustfix
// check-pass
2018-09-10 21:14:30 +00:00
#![warn(rust_2018_compatibility)]
#![allow(dead_code)]
#![allow(deprecated)]
2018-09-10 21:14:30 +00:00
fn foo() -> Result<usize, ()> {
let x: Result<usize, ()> = Ok(22);
r#try!(x);
//~^ WARNING `try` is a keyword in the 2018 edition
2021-06-16 12:27:44 +00:00
//~| WARNING this is accepted in the current edition
2018-09-10 21:14:30 +00:00
Ok(44)
}
2021-06-16 12:27:44 +00:00
fn main() {}