]> git.lizzy.rs Git - rust.git/blob - src/test/ui/foreign/foreign-pub-super.rs
Merge commit '15c8d31392b9fbab3b3368b67acc4bbe5983115a' into cranelift-rebase
[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() {}