about summary refs log tree commit diff
path: root/tests/rustdoc/private-non-local-fields-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/private-non-local-fields-2.rs')
-rw-r--r--tests/rustdoc/private-non-local-fields-2.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/rustdoc/private-non-local-fields-2.rs b/tests/rustdoc/private-non-local-fields-2.rs
deleted file mode 100644
index f2d3530c088..00000000000
--- a/tests/rustdoc/private-non-local-fields-2.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-//! This test makes sure that with never show the inner fields in the
-//! aliased type view of type alias.
-
-//@ compile-flags: -Z unstable-options --document-private-items
-
-#![crate_name = "foo"]
-
-use std::collections::BTreeMap;
-
-//@ has 'foo/type.FooBar.html' '//*[@class="rust item-decl"]/code' 'struct FooBar { /* private fields */ }'
-pub type FooBar = BTreeMap<u32, String>;