diff options
Diffstat (limited to 'src/test/ui/error-codes')
| -rw-r--r-- | src/test/ui/error-codes/E0429.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/error-codes/E0429.stderr b/src/test/ui/error-codes/E0429.stderr index 457782583a5..c598803fa6c 100644 --- a/src/test/ui/error-codes/E0429.stderr +++ b/src/test/ui/error-codes/E0429.stderr @@ -4,11 +4,11 @@ error[E0429]: `self` imports are only allowed within a { } list LL | use std::fmt::self; | ^^^^^^ | -help: Remove `::self`.. +help: consider importing the module directly | LL | use std::fmt; | -- -help: ..or add braces around `self` +help: alternatively, use the multi-path `use` syntax to import `self` | LL | use std::fmt::{self}; | ^ ^ |
