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, 0 insertions, 19 deletions
diff --git a/src/test/ui/error-codes/E0429.stderr b/src/test/ui/error-codes/E0429.stderr
deleted file mode 100644
index 08b99232e..000000000
--- a/src/test/ui/error-codes/E0429.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-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`.