Skip to content

Commit 0321e73

Browse files
committed
Auto merge of #131517 - aDotInTheVoid:rdj-safe-extern-test, r=GuillaumeGomez
rustdoc-json: Add tests for unsafe/safe extern blocks (RFC 3484) Closes #126786, turns out this all Just Works (TM) Tracking issue: #123743 r? `@GuillaumeGomez`
2 parents 249df9e + 8a9b670 commit 0321e73

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

tests/rustdoc-json/fns/extern_safe.rs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
extern "C" {
2+
//@ is "$.index[*][?(@.name=='f1')].inner.function.header.is_unsafe" true
3+
pub fn f1();
4+
5+
// items in unadorned `extern` blocks cannot have safety qualifiers
6+
}
7+
8+
unsafe extern "C" {
9+
//@ is "$.index[*][?(@.name=='f4')].inner.function.header.is_unsafe" true
10+
pub fn f4();
11+
12+
//@ is "$.index[*][?(@.name=='f5')].inner.function.header.is_unsafe" true
13+
pub unsafe fn f5();
14+
15+
//@ is "$.index[*][?(@.name=='f6')].inner.function.header.is_unsafe" false
16+
pub safe fn f6();
17+
}

0 commit comments

Comments
 (0)