rust/tests/rustdoc/strip-block-doc-comments-stars.rs
2023-01-11 09:32:08 +00:00

12 lines
315 B
Rust

#![crate_name = "foo"]
// The goal of this test is to ensure that it won't be generated as a list because
// block doc comments can have their lines starting with a star.
// @has foo/fn.foo.html
// @snapshot docblock - '//*[@class="rustdoc-toggle top-doc"]//*[@class="docblock"]'
/**
* a
*/
pub fn foo() {}