summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/resolve-bad-visibility.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/resolve-bad-visibility.rs')
-rw-r--r--src/test/ui/resolve/resolve-bad-visibility.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/resolve/resolve-bad-visibility.rs b/src/test/ui/resolve/resolve-bad-visibility.rs
deleted file mode 100644
index 7d48bb97b..000000000
--- a/src/test/ui/resolve/resolve-bad-visibility.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-enum E {}
-trait Tr {}
-
-pub(in E) struct S; //~ ERROR expected module, found enum `E`
-pub(in Tr) struct Z; //~ ERROR expected module, found trait `Tr`
-pub(in std::vec) struct F; //~ ERROR visibilities can only be restricted to ancestor modules
-pub(in nonexistent) struct G; //~ ERROR failed to resolve
-pub(in too_soon) struct H; //~ ERROR failed to resolve
-
-// Visibilities are resolved eagerly without waiting for modules becoming fully populated.
-// Visibilities can only use ancestor modules legally which are always available in time,
-// so the worst thing that can happen due to eager resolution is a suboptimal error message.
-mod too_soon {}
-
-fn main () {}