You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0412]: cannot find type `Formatter` in this scope
--> src/main.rs:17:27
|
17 | fn fmt(&self, f:&mut Formatter) -> fmt::Result{
| ^^^^^^^^^ not found in this scope
|
help: possible candidate is found in another module, you can import it into scope
|
11 | #[derive(use std::fmt::Formatter;
|
This should be:
help: possible candidate is found in another module, you can import it into scope
|
- 11 | #[derive(use std::fmt::Formatter;
|
help: possible candidate is found in another module, you can import it into scope
|
+ 11 | use std::fmt::Formatter;
|
The #[derive( bit should not be there.
This issue has been occurring for at least the last ~7 nightlies.
The text was updated successfully, but these errors were encountered:
Consider the following error:
This should be:
The
#[derive(
bit should not be there.This issue has been occurring for at least the last ~7 nightlies.
The text was updated successfully, but these errors were encountered: