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