// run-rustfix #![deny(rustdoc::invalid_html_tags)] /// This `Vec` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct Generic; /// This `vec::Vec` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct GenericPath; /// This `i32` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct PathsCanContainTrailingNumbers; /// This `Vec::` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct Turbofish; /// This [link](https://rust-lang.org)`::` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct BareTurbofish; /// This `Vec::` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct Nested; /// Nested generics `Vec>` //~^ ERROR unclosed HTML tag `u32` //~|HELP try marking as source pub struct NestedGenerics; /// Generics with path `Vec::Iter` //~^ ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct GenericsWithPath; /// Generics with path `>::Iter` //~^ ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct NestedGenericsWithPath; /// Generics with path `Vec>::Iter` //~^ ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct NestedGenericsWithPath2; /// Generics with bump `>`s //~^ ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct NestedGenericsWithBump; /// Generics with bump `Vec>`s //~^ ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct NestedGenericsWithBump2; /// Generics with punct `>`! //~^ ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct NestedGenericsWithPunct; /// Generics with punct `Vec>`! //~^ ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct NestedGenericsWithPunct2; /// This [`Vec`] thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct IntraDocLink; /// This [`Vec::`] thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct IntraDocLinkTurbofish;