2018-01-08 23:22:42 +00:00
|
|
|
error: Found an empty line after an outer attribute. Perhaps you forgot to add a '!' to make it an inner attribute?
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:15:1
|
|
|
|
|
|
|
|
|
15 | / #[crate_type = "lib"]
|
|
|
|
16 | |
|
|
|
|
17 | | /// some comment
|
|
|
|
18 | | fn with_one_newline_and_comment() { assert!(true) }
|
|
|
|
| |_
|
|
|
|
|
|
|
|
|
= note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings`
|
2018-01-08 23:22:42 +00:00
|
|
|
|
|
|
|
error: Found an empty line after an outer attribute. Perhaps you forgot to add a '!' to make it an inner attribute?
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:27:1
|
2018-01-08 23:22:42 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
27 | / #[crate_type = "lib"]
|
|
|
|
28 | |
|
|
|
|
29 | | fn with_one_newline() { assert!(true) }
|
2018-01-08 23:22:42 +00:00
|
|
|
| |_
|
|
|
|
|
2018-01-19 07:18:29 +00:00
|
|
|
error: Found an empty line after an outer attribute. Perhaps you forgot to add a '!' to make it an inner attribute?
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:32:1
|
2018-01-19 07:18:29 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
32 | / #[crate_type = "lib"]
|
|
|
|
33 | |
|
|
|
|
34 | |
|
|
|
|
35 | | fn with_two_newlines() { assert!(true) }
|
2018-01-19 07:18:29 +00:00
|
|
|
| |_
|
|
|
|
|
2018-01-23 20:32:06 +00:00
|
|
|
error: Found an empty line after an outer attribute. Perhaps you forgot to add a '!' to make it an inner attribute?
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:39:1
|
2018-01-23 20:32:06 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
39 | / #[crate_type = "lib"]
|
|
|
|
40 | |
|
|
|
|
41 | | enum Baz {
|
2018-01-23 20:32:06 +00:00
|
|
|
| |_
|
|
|
|
|
|
|
|
error: Found an empty line after an outer attribute. Perhaps you forgot to add a '!' to make it an inner attribute?
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:47:1
|
2018-01-23 20:32:06 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
47 | / #[crate_type = "lib"]
|
|
|
|
48 | |
|
|
|
|
49 | | struct Foo {
|
2018-01-23 20:32:06 +00:00
|
|
|
| |_
|
|
|
|
|
|
|
|
error: Found an empty line after an outer attribute. Perhaps you forgot to add a '!' to make it an inner attribute?
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/empty_line_after_outer_attribute.rs:55:1
|
2018-01-23 20:32:06 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
55 | / #[crate_type = "lib"]
|
|
|
|
56 | |
|
|
|
|
57 | | 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
|
|
|
|