2018-08-24 20:48:20 +00:00
|
|
|
// run-rustfix
|
2020-04-20 00:27:28 +00:00
|
|
|
// check-pass
|
2018-08-24 20:48:20 +00:00
|
|
|
|
|
|
|
#![warn(rust_2018_compatibility)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
r#try();
|
2019-11-06 00:00:00 +00:00
|
|
|
//~^ 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-08-24 20:48:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn r#try() {
|
2019-11-06 00:00:00 +00:00
|
|
|
//~^ 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-08-24 20:48:20 +00:00
|
|
|
}
|