about summary refs log tree commit diff
path: root/tests/ui/consts/const.rs
blob: 1f1c6e30b4a0850be0bee82be399f6c722bcb10b (plain)
1
2
3
4
5
6
//@ run-pass
#![allow(non_upper_case_globals)]

static i: isize = 10;

pub fn main() { println!("{}", i); }