]> git.lizzy.rs Git - rust.git/blob - tests/ui/foreign/foreign-pub-super.rs
Rollup merge of #105526 - Xiretza:iter-from-generator-derive, r=scottmcm
[rust.git] / tests / 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() {}