]> git.proxmox.com Git - rustc.git/blob - src/test/ui/rust-2018/try-macro.fixed
New upstream version 1.30.0~beta.7+dfsg1
[rustc.git] / src / test / ui / rust-2018 / try-macro.fixed
1 // Test that `try!` macros are rewritten.
2
3 // run-rustfix
4 // compile-pass
5
6 #![warn(rust_2018_compatibility)]
7 #![allow(unused_variables)]
8 #![allow(dead_code)]
9
10 fn foo() -> Result<usize, ()> {
11 let x: Result<usize, ()> = Ok(22);
12 r#try!(x);
13 Ok(44)
14 }
15
16 fn main() { }