mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 04:52:40 +00:00
9 lines
236 B
Rust
9 lines
236 B
Rust
//@ revisions: rust2015 rust2018 rust2021
|
|
//@[rust2018] edition:2018
|
|
//@[rust2021] edition:2021
|
|
fn main() {
|
|
println!('hello world');
|
|
//~^ ERROR unterminated character literal
|
|
//[rust2021]~| ERROR prefix `world` is unknown
|
|
}
|