mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
274 B
Rust
16 lines
274 B
Rust
// build-pass
|
|
// #28600 ICE: pub extern fn with parameter type &str inside struct impl
|
|
|
|
struct Test;
|
|
|
|
impl Test {
|
|
#[allow(dead_code)]
|
|
#[allow(unused_variables)]
|
|
#[allow(improper_ctypes_definitions)]
|
|
pub extern "C" fn test(val: &str) {
|
|
|
|
}
|
|
}
|
|
|
|
fn main() {}
|