about summary refs log tree commit diff
path: root/tests/ui/associated-consts/constant-trait-item-reference-selection-26095.rs
blob: f0fe2db432bc95b5b98aea48229eb8b3bf539aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// https://github.com/rust-lang/rust/issues/26095
//@ check-pass
#![allow(dead_code)]
#![allow(non_upper_case_globals)]

trait HasNumber<T> {
    const Number: usize;
}

enum One {}
enum Two {}

enum Foo {}

impl<T> HasNumber<T> for One {
    const Number: usize = 1;
}

impl<T> HasNumber<T> for Two {
    const Number: usize = 2;
}

fn main() {}