blob: 12934238a8e92f5fccc4c8e38d843832c243aaf2 [file] [log] [blame]
#![crate_type="lib"]
pub trait Trait {
fn provided(&self) {}
}
pub struct Struct;
impl Trait for Struct {
fn provided(&self) {}
}