rust/tests/ui/foreign/foreign-pub-super.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
159 B
Rust
Raw Normal View History

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