A very minor issue but I noticed that rustc accepts to build code like this: ``` rust fn main() { match () { /// doc _ => (), }; } ``` I would expect an error at `/// doc` since there's no item to document here.