2020-08-11 13:43:21 +00:00
|
|
|
error: found an empty line after an outer attribute. Perhaps you forgot to add a `!` to make it an inner attribute?
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/empty_line_after_outer_attribute.rs:11:1
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | /// some comment
|
|
|
|
LL | | fn with_one_newline_and_comment() { assert!(true) }
|
2018-10-06 16:18:06 +00:00
|
|
|
| |_
|
|
|
|
|
|
|
|
|
= note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]`
|
2018-01-08 23:22:42 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: found an empty line after an outer attribute. Perhaps you forgot to add a `!` to make it an inner attribute?
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/empty_line_after_outer_attribute.rs:23:1
|
2018-01-08 23:22:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | fn with_one_newline() { assert!(true) }
|
2018-01-08 23:22:42 +00:00
|
|
|
| |_
|
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: found an empty line after an outer attribute. Perhaps you forgot to add a `!` to make it an inner attribute?
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/empty_line_after_outer_attribute.rs:28:1
|
2018-01-19 07:18:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / #[crate_type = "lib"]
|
2024-03-05 16:24:30 +00:00
|
|
|
... |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | fn with_two_newlines() { assert!(true) }
|
2018-01-19 07:18:29 +00:00
|
|
|
| |_
|
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: found an empty line after an outer attribute. Perhaps you forgot to add a `!` to make it an inner attribute?
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/empty_line_after_outer_attribute.rs:35:1
|
2018-01-23 20:32:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | enum Baz {
|
2018-01-23 20:32:06 +00:00
|
|
|
| |_
|
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: found an empty line after an outer attribute. Perhaps you forgot to add a `!` to make it an inner attribute?
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/empty_line_after_outer_attribute.rs:43:1
|
2018-01-23 20:32:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | struct Foo {
|
2018-01-23 20:32:06 +00:00
|
|
|
| |_
|
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: found an empty line after an outer attribute. Perhaps you forgot to add a `!` to make it an inner attribute?
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/empty_line_after_outer_attribute.rs:51:1
|
2018-01-23 20:32:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | mod foo {
|
2018-01-23 20:32:06 +00:00
|
|
|
| |_
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-01-19 07:18:29 +00:00
|
|
|
|