From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- .../rustc_error_codes/src/error_codes/E0154.md | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 compiler/rustc_error_codes/src/error_codes/E0154.md (limited to 'compiler/rustc_error_codes/src/error_codes/E0154.md') diff --git a/compiler/rustc_error_codes/src/error_codes/E0154.md b/compiler/rustc_error_codes/src/error_codes/E0154.md new file mode 100644 index 000000000..e437a7189 --- /dev/null +++ b/compiler/rustc_error_codes/src/error_codes/E0154.md @@ -0,0 +1,34 @@ +#### Note: this error code is no longer emitted by the compiler. + +Imports (`use` statements) are not allowed after non-item statements, such as +variable declarations and expression statements. + +Here is an example that demonstrates the error: + +``` +fn f() { + // Variable declaration before import + let x = 0; + use std::io::Read; + // ... +} +``` + +The solution is to declare the imports at the top of the block, function, or +file. + +Here is the previous example again, with the correct order: + +``` +fn f() { + use std::io::Read; + let x = 0; + // ... +} +``` + +See the [Declaration Statements][declaration-statements] section of the +reference for more information about what constitutes an item declaration +and what does not. + +[declaration-statements]: https://doc.rust-lang.org/reference/statements.html#declaration-statements -- cgit v1.2.3