2014-10-27 17:37:07 -05:00
|
|
|
#![forbid(non_upper_case_globals)]
|
2014-03-21 20:05:05 -05:00
|
|
|
#![allow(dead_code)]
|
2013-06-30 22:51:13 -05:00
|
|
|
|
2019-01-04 14:00:15 -06:00
|
|
|
static foo: isize = 1; //~ ERROR static variable `foo` should have an upper case name
|
2013-06-30 22:51:13 -05:00
|
|
|
|
2019-01-04 14:00:15 -06:00
|
|
|
static mut bar: isize = 1; //~ ERROR static variable `bar` should have an upper case name
|
2016-10-14 05:12:42 -05:00
|
|
|
|
2018-04-10 16:30:23 -05:00
|
|
|
#[no_mangle]
|
|
|
|
pub static extern_foo: isize = 1; // OK, because #[no_mangle] supersedes the warning
|
|
|
|
|
2013-06-30 22:51:13 -05:00
|
|
|
fn main() { }
|