Skip to content

Commit 350b0d8

Browse files
committed
Lint against lowercase static mut
1 parent 098d228 commit 350b0d8

File tree

3 files changed

+6
-20
lines changed

3 files changed

+6
-20
lines changed

src/librustc_lint/bad_style.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,12 @@ impl LintPass for NonUpperCaseGlobals {
355355
impl LateLintPass for NonUpperCaseGlobals {
356356
fn check_item(&mut self, cx: &LateContext, it: &hir::Item) {
357357
match it.node {
358-
// only check static constants
359358
hir::ItemStatic(_, hir::MutImmutable, _) => {
360359
NonUpperCaseGlobals::check_upper_case(cx, "static constant", it.name, it.span);
361360
}
361+
hir::ItemStatic(_, hir::MutMutable, _) => {
362+
NonUpperCaseGlobals::check_upper_case(cx, "static variable", it.name, it.span);
363+
}
362364
hir::ItemConst(..) => {
363365
NonUpperCaseGlobals::check_upper_case(cx, "constant", it.name, it.span);
364366
}

src/test/compile-fail/lint-non-uppercase-statics.rs

+3
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@
1313

1414
static foo: isize = 1; //~ ERROR static constant `foo` should have an upper case name such as `FOO`
1515

16+
static mut bar: isize = 1;
17+
//~^ ERROR static variable `bar` should have an upper case name such as `BAR`
18+
1619
fn main() { }

src/test/run-pass/lint-non-uppercase-statics-lowercase-mut-statics.rs

-19
This file was deleted.

0 commit comments

Comments
 (0)