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