1 2 3 4 5 6 7 8 9 10 11
#![crate_type="lib"] pub trait Trait { fn provided(&self) {} } pub struct Struct; impl Trait for Struct { fn provided(&self) {} }