summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/issue-110573.rs
blob: d9f0868b7659dd279ab20e239832faac3ae61747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass

#![deny(warnings)]

pub struct Struct;

impl Struct {
    #[allow(non_upper_case_globals)]
    pub const Const: () = ();
}

fn main() {}