1 2 3 4 5 6 7
#![deny(non_upper_case_globals)] fn noop<const x: u32>() { //~^ ERROR const parameter `x` should have an upper case name } fn main() {}