2020-08-11 08:43:21 -05: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 07:04:35 -05:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:11:1
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | /// some comment
|
|
|
|
LL | | fn with_one_newline_and_comment() { assert!(true) }
|
2018-10-06 11:18:06 -05:00
|
|
|
| |_
|
|
|
|
|
|
|
|
|
= note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings`
|
2018-01-08 17:22:42 -06:00
|
|
|
|
2020-08-11 08:43:21 -05: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 07:04:35 -05:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:23:1
|
2018-01-08 17:22:42 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | fn with_one_newline() { assert!(true) }
|
2018-01-08 17:22:42 -06:00
|
|
|
| |_
|
|
|
|
|
2020-08-11 08:43:21 -05: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 07:04:35 -05:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:28:1
|
2018-01-19 01:18:29 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | fn with_two_newlines() { assert!(true) }
|
2018-01-19 01:18:29 -06:00
|
|
|
| |_
|
|
|
|
|
2020-08-11 08:43:21 -05: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 07:04:35 -05:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:35:1
|
2018-01-23 14:32:06 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | enum Baz {
|
2018-01-23 14:32:06 -06:00
|
|
|
| |_
|
|
|
|
|
2020-08-11 08:43:21 -05: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 07:04:35 -05:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:43:1
|
2018-01-23 14:32:06 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | struct Foo {
|
2018-01-23 14:32:06 -06:00
|
|
|
| |_
|
|
|
|
|
2020-08-11 08:43:21 -05: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 07:04:35 -05:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:51:1
|
2018-01-23 14:32:06 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / #[crate_type = "lib"]
|
|
|
|
LL | |
|
|
|
|
LL | | mod foo {
|
2018-01-23 14:32:06 -06:00
|
|
|
| |_
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-01-19 01:18:29 -06:00
|
|
|
|