]> git.proxmox.com Git - rustc.git/blob - src/test/ui/foreign/foreign-pub-super.rs
New upstream version 1.50.0+dfsg1
[rustc.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() {}