]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const.rs
Rollup merge of #106962 - compiler-errors:use-sugg-span, r=oli-obk
[rust.git] / tests / ui / consts / const.rs
1 // run-pass
2 #![allow(non_upper_case_globals)]
3
4 static i: isize = 10;
5
6 pub fn main() { println!("{}", i); }