rust-clippy/tests/ui/crashes/ice-7423.rs

14 lines
151 B
Rust
Raw Normal View History

pub trait Trait {
fn f();
}
impl Trait for usize {
fn f() {
extern "C" {
fn g() -> usize;
}
}
}
fn main() {}