### Summary Pretty self-explanatory (I think). ### Lint Name `empty_line_after_outer_attr` ### Reproducer I tried this code ([playground link](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=25dc51b4f387dc264a1b1d9fe8d35bb4)): ```rust #![warn(clippy::empty_line_after_outer_attr)] /// Main function fn main() {} ``` I expected to see this happen: A warning. Instead, this happened: No warning. ### Version _No response_