rust/tests/ui/hello.rs

13 lines
209 B
Rust
Raw Normal View History

//@ run-pass
//@ revisions: e2015 e2018 e2021 e2024
//@[e2018] edition:2018
//@[e2021] edition:2021
//@[e2024] edition:2024
2022-02-28 23:13:24 +00:00
//@[e2024] compile-flags: -Zunstable-options
2022-02-28 23:13:24 +00:00
fn main() {
println!("hello");
}