summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-112590-suggest-import.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/issue-112590-suggest-import.stderr')
-rw-r--r--tests/ui/suggestions/issue-112590-suggest-import.stderr36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/ui/suggestions/issue-112590-suggest-import.stderr b/tests/ui/suggestions/issue-112590-suggest-import.stderr
new file mode 100644
index 000000000..aeac18c16
--- /dev/null
+++ b/tests/ui/suggestions/issue-112590-suggest-import.stderr
@@ -0,0 +1,36 @@
+error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
+ --> $DIR/issue-112590-suggest-import.rs:3:6
+ |
+LL | impl fmt::Debug for S {
+ | ^^^ use of undeclared crate or module `fmt`
+ |
+help: consider importing this module
+ |
+LL + use std::fmt;
+ |
+
+error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
+ --> $DIR/issue-112590-suggest-import.rs:4:28
+ |
+LL | fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
+ | ^^^ use of undeclared crate or module `fmt`
+ |
+help: consider importing this module
+ |
+LL + use std::fmt;
+ |
+
+error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
+ --> $DIR/issue-112590-suggest-import.rs:4:51
+ |
+LL | fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
+ | ^^^ use of undeclared crate or module `fmt`
+ |
+help: consider importing this module
+ |
+LL + use std::fmt;
+ |
+
+error: aborting due to 3 previous errors
+
+For more information about this error, try `rustc --explain E0433`.