rust/tests/run-pass/associated-constant-ice.rs
2017-08-01 17:54:21 +02:00

14 lines
189 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
pub trait Trait {
const CONSTANT: u8;
}
impl Trait for u8 {
const CONSTANT: u8 = 2;
}
fn main() {
println!("{}", u8::CONSTANT * 10);
}