]> git.lizzy.rs Git - rust.git/blob - tests/ui/new-style-constants.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / new-style-constants.rs
1 // run-pass
2
3 static FOO: isize = 3;
4
5 pub fn main() {
6     println!("{}", FOO);
7 }