blob: b90ab32ddc4ad64788018bbdb25601f464c74eb4 [file] [log] [blame]
#![crate_name="a"]
#![crate_type = "lib"]
type t1 = usize;
trait foo {
fn foo(&self);
}
impl foo for String {
fn foo(&self) {}
}