summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-non-uppercase-associated-const.rs
blob: 7b0d9396077d040b63f4dd97f5c2bb6e6923b4bc (plain)
1
2
3
4
5
6
7
8
9
10
11
#![deny(non_upper_case_globals)]
#![allow(dead_code)]

struct Foo;

impl Foo {
    const not_upper: bool = true;
}
//~^^ ERROR associated constant `not_upper` should have an upper case name

fn main() {}