summaryrefslogtreecommitdiffstats
path: root/tests/ui/use/use-mod/use-mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/use/use-mod/use-mod.rs')
-rw-r--r--tests/ui/use/use-mod/use-mod.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/use/use-mod/use-mod.rs b/tests/ui/use/use-mod/use-mod.rs
new file mode 100644
index 000000000..87064c6a4
--- /dev/null
+++ b/tests/ui/use/use-mod/use-mod.rs
@@ -0,0 +1,19 @@
+use foo::bar::{
+ self,
+//~^ ERROR `self` import can only appear once in an import list
+ Bar,
+ self
+//~^ ERROR the name `bar` is defined multiple times
+};
+
+use {self};
+//~^ ERROR `self` import can only appear in an import list with a non-empty prefix
+
+mod foo {
+ pub mod bar {
+ pub struct Bar;
+ pub struct Baz;
+ }
+}
+
+fn main() {}