blob: f285b2c0ee6fab0a0c8a92e2054993ac84b7ac6e [file] [log] [blame]
// run-rustfix
// build-pass (FIXME(62277): could be check-pass?)
#![warn(rust_2018_compatibility)]
fn main() {
r#try();
//~^ WARNING `try` is a keyword in the 2018 edition
//~| WARNING it will become a hard error in the 2018 edition!
}
fn r#try() {
//~^ WARNING `try` is a keyword in the 2018 edition
//~| WARNING it will become a hard error in the 2018 edition!
}