summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0429.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0429.stderr')
-rw-r--r--src/test/ui/error-codes/E0429.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/error-codes/E0429.stderr b/src/test/ui/error-codes/E0429.stderr
new file mode 100644
index 000000000..08b99232e
--- /dev/null
+++ b/src/test/ui/error-codes/E0429.stderr
@@ -0,0 +1,19 @@
+error[E0429]: `self` imports are only allowed within a { } list
+ --> $DIR/E0429.rs:1:13
+ |
+LL | use std::fmt::self;
+ | ^^^^^^
+ |
+help: consider importing the module directly
+ |
+LL - use std::fmt::self;
+LL + use std::fmt;
+ |
+help: alternatively, use the multi-path `use` syntax to import `self`
+ |
+LL | use std::fmt::{self};
+ | + +
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0429`.