mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-16 10:35:22 +00:00
14 lines
151 B
Rust
14 lines
151 B
Rust
pub trait Trait {
|
|
fn f();
|
|
}
|
|
|
|
impl Trait for usize {
|
|
fn f() {
|
|
extern "C" {
|
|
fn g() -> usize;
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|