2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-01-05 09:48:46 +00:00
rust-clippy/tests/ui/crashes/ice-7423.rs
2021-07-03 12:40:50 -05:00

13 lines
151 B
Rust

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