I tried this code: ```rust /// comment /// /// - panic!() pub fn f() {} ``` I expected to see this happen when running `cargo test`: *nothing* Instead, this happened: *thread 'main' panicked at 'explicit panic', src/lib.rs:3:1* ### Meta `rustc --version --verbose`: ``` rustc 1.65.0 (897e37553 2022-11-02) binary: rustc commit-hash: 897e37553bba8b42751c67658967889d11ecd120 commit-date: 2022-11-02 host: aarch64-apple-darwin release: 1.65.0 LLVM version: 15.0.0 ```