mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
25 lines
1,012 B
Rust
25 lines
1,012 B
Rust
//@ revisions: e2015 e2018
|
|
//@[e2018] edition: 2018
|
|
|
|
#![deny(rust_2024_compatibility)]
|
|
|
|
fn gen() {}
|
|
//~^ ERROR `gen` is a keyword in the 2024 edition
|
|
//[e2015]~| WARNING this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2024!
|
|
//[e2018]~| WARNING this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2024!
|
|
|
|
fn main() {
|
|
let gen = r#gen;
|
|
//~^ ERROR `gen` is a keyword in the 2024 edition
|
|
//[e2015]~| WARNING this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2024!
|
|
//[e2018]~| WARNING this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2024!
|
|
}
|
|
|
|
macro_rules! t {
|
|
() => { mod test { fn gen() {} } }
|
|
//~^ ERROR `gen` is a keyword in the 2024 edition
|
|
//[e2015]~| WARNING this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2024!
|
|
//[e2018]~| WARNING this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2024!
|
|
}
|
|
|
|
t!();
|