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