mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
12 lines
204 B
Rust
12 lines
204 B
Rust
#![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() {}
|