]> git.lizzy.rs Git - rust.git/blob - tests/run-pass/associated-constant-ice.rs
Reduce the hackiness of cargo-clippy
[rust.git] / tests / run-pass / associated-constant-ice.rs
1
2
3
4 pub trait Trait {
5     const CONSTANT: u8;
6 }
7
8 impl Trait for u8 {
9     const CONSTANT: u8 = 2;
10 }
11
12 fn main() {
13     println!("{}", u8::CONSTANT * 10);
14 }