mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
140 B
Rust
13 lines
140 B
Rust
#![crate_name="a"]
|
|
#![crate_type = "lib"]
|
|
|
|
type t1 = usize;
|
|
|
|
trait foo {
|
|
fn foo(&self);
|
|
}
|
|
|
|
impl foo for String {
|
|
fn foo(&self) {}
|
|
}
|