]> git.lizzy.rs Git - rust.git/blob - src/test/ui/foreign/foreign-pub-super.rs
Auto merge of #95548 - rcvalle:rust-cfi-2, r=nagisa
[rust.git] / src / test / ui / foreign / foreign-pub-super.rs
1 // Test for #79487
2 // check-pass
3
4 #![allow(dead_code)]
5
6 mod sha2 {
7     extern "C" {
8         pub(super) fn GFp_sha512_block_data_order();
9     }
10 }
11
12 fn main() {}