summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/assoc-const-underscore-syntactic-pass.rs
blob: 60da408c8115351859b9bf2bcd113882a0927a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// All constant items (associated or otherwise) may syntactically use `_` as a name.

// check-pass

fn main() {}

#[cfg(FALSE)]
const _: () = {
    pub trait A {
        const _: () = ();
    }
    impl A for () {
        const _: () = ();
    }
    impl dyn A {
        const _: () = ();
    }
};