]> git.lizzy.rs Git - rust.git/blob - tests/ui/new-style-constants.rs
Rollup merge of #106715 - BoxyUwU:new_solver_triagebot, r=lcnr
[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 }