]> git.lizzy.rs Git - rust.git/blob - tests/ui/new-style-constants.rs
Rollup merge of #106144 - tgross35:patch-1, r=Mark-Simulacrum
[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 }