about summary refs log tree commit diff
path: root/src/test/rustdoc-json/stripped_modules.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2022-07-15 17:48:46 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2022-07-16 13:39:38 +0200
commitb95b1389c50f000683c7c2fc5f8713cb5d3bfa96 (patch)
treeffcf67965f224244126df9ce8a47023432b0bc46 /src/test/rustdoc-json/stripped_modules.rs
parent3c55a26cb489abd4c8e8dc4835bad77ec80be493 (diff)
Add tests for JSON non-inlining
Diffstat (limited to 'src/test/rustdoc-json/stripped_modules.rs')
-rw-r--r--src/test/rustdoc-json/stripped_modules.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/rustdoc-json/stripped_modules.rs b/src/test/rustdoc-json/stripped_modules.rs
new file mode 100644
index 00000000000..91f9f02ad7b
--- /dev/null
+++ b/src/test/rustdoc-json/stripped_modules.rs
@@ -0,0 +1,21 @@
+#![no_core]
+#![feature(no_core)]
+
+// @!has stripped_modules.json "$.index[*][?(@.name=='no_pub_inner')]"
+mod no_pub_inner {
+    fn priv_inner() {}
+}
+
+// @!has - "$.index[*][?(@.name=='pub_inner_unreachable')]"
+mod pub_inner_unreachable {
+    // @!has - "$.index[*][?(@.name=='pub_inner_1')]"
+    pub fn pub_inner_1() {}
+}
+
+// @has - "$.index[*][?(@.name=='pub_inner_reachable')]"
+mod pub_inner_reachable {
+    // @has - "$.index[*][?(@.name=='pub_inner_2')]"
+    pub fn pub_inner_2() {}
+}
+
+pub use pub_inner_reachable::pub_inner_2;