]> git.lizzy.rs Git - rust.git/blob - src/test/ui/new-style-constants.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / new-style-constants.rs
1 // run-pass
2
3 static FOO: isize = 3;
4
5 pub fn main() {
6     println!("{}", FOO);
7 }