]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const.rs
Rollup merge of #72279 - RalfJung:raw-ref-macros, r=nikomatsakis
[rust.git] / src / test / 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); }