rust/tests/ui/hello.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
203 B
Rust
Raw Normal View History

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