]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/const-parameter-uppercase-lint.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / const-generics / const-parameter-uppercase-lint.rs
1 // revisions: full min
2
3 #![cfg_attr(full, feature(const_generics))]
4 #![cfg_attr(full, allow(incomplete_features))]
5
6 #![deny(non_upper_case_globals)]
7
8 fn noop<const x: u32>() {
9 //~^ ERROR const parameter `x` should have an upper case name
10 }
11
12 fn main() {}