rustc/tests/ui/foreign/foreign-pub-super.rs
2023-08-02 10:33:26 +02:00

13 lines
159 B
Rust

// Test for #79487
// check-pass
#![allow(dead_code)]
mod sha2 {
extern "C" {
pub(super) fn GFp_sha512_block_data_order();
}
}
fn main() {}