Files
rust/tests/ui/associated-consts/constant-trait-item-reference-selection-26095.rs
2025-08-02 15:29:16 -04:00

24 lines
347 B
Rust

// 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() {}