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?
|
2022-06-04 12:04:35 +00:00
|
|
|
--> $DIR/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`
|
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?
|
2022-06-04 12:04:35 +00:00
|
|
|
--> $DIR/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?
|
2022-06-04 12:04:35 +00:00
|
|
|
--> $DIR/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"]
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
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?
|
2022-06-04 12:04:35 +00:00
|
|
|
--> $DIR/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?
|
2022-06-04 12:04:35 +00:00
|
|
|
--> $DIR/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?
|
2022-06-04 12:04:35 +00:00
|
|
|
--> $DIR/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
|
|
|
|