mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
10 lines
361 B
Text
10 lines
361 B
Text
error: `macro_use` attributes are no longer needed in the Rust 2018 edition
|
|
--> $DIR/macro_use_imports.rs:5:1
|
|
|
|
|
LL | #[macro_use]
|
|
| ^^^^^^^^^^^^ help: remove the attribute and import the macro directly, try: `use std::prelude::<macro name>`
|
|
|
|
|
= note: `-D clippy::macro-use-imports` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|