]> git.lizzy.rs Git - rust.git/blob - tests/ui/new-style-constants.rs
Rollup merge of #104965 - zacklukem:p-option-as_ref-docs, r=scottmcm
[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 }