blob: 5d97907c2e7fa430fcc7852e82dabc769d1cc1e7 [file] [log] [blame]
// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]
#![deny(non_upper_case_globals)]
fn noop<const x: u32>() {
//~^ ERROR const parameter `x` should have an upper case name
}
fn main() {}