2018-08-24 13:48:20 -07:00
|
|
|
// run-rustfix
|
2020-04-19 17:27:28 -07:00
|
|
|
// check-pass
|
2018-08-24 13:48:20 -07:00
|
|
|
|
|
|
|
#![warn(rust_2018_compatibility)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
try();
|
2019-11-06 00:00:00 +00:00
|
|
|
//~^ WARNING `try` is a keyword in the 2018 edition
|
2021-06-16 14:27:44 +02:00
|
|
|
//~| WARNING this is accepted in the current edition
|
2018-08-24 13:48:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn try() {
|
2019-11-06 00:00:00 +00:00
|
|
|
//~^ WARNING `try` is a keyword in the 2018 edition
|
2021-06-16 14:27:44 +02:00
|
|
|
//~| WARNING this is accepted in the current edition
|
2018-08-24 13:48:20 -07:00
|
|
|
}
|