summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/unnamed_pub_trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/imports/unnamed_pub_trait.rs')
-rw-r--r--src/test/ui/imports/unnamed_pub_trait.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/imports/unnamed_pub_trait.rs b/src/test/ui/imports/unnamed_pub_trait.rs
deleted file mode 100644
index c38fb17b9..000000000
--- a/src/test/ui/imports/unnamed_pub_trait.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// aux-build:unnamed_pub_trait_source.rs
-
-/*
- * This crate declares an unnameable public path for our item. Make sure we don't suggest
- * importing it by name, and instead we suggest importing it by glob.
- */
-extern crate unnamed_pub_trait_source;
-//~^ HELP the following trait is implemented but not in scope; perhaps add a `use` for it:
-//~| SUGGESTION unnamed_pub_trait_source::prelude::*; // trait Tr
-
-fn main() {
- use unnamed_pub_trait_source::S;
- S.method();
- //~^ ERROR no method named `method` found for struct `S` in the current scope [E0599]
- //~| HELP items from traits can only be used if the trait is in scope
-}