blob: 9ab570fd170f6a6e391ad9c5a0c99490c30d9aaf [file] [log] [blame]
#![crate_type="lib"]
pub trait A {
fn a(&self) {}
}
impl A for () {}