summary refs log tree commit diff
path: root/tests/ui/hello.rs
blob: f329ee086f90c7e18ab6eb87412c6c095c3e61ee (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass
//@ revisions: e2015 e2018 e2021 e2024

//@[e2018] edition:2018
//@[e2021] edition:2021
//@[e2024] edition:2024

fn main() {
    println!("hello");
}