mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 05:27:36 +00:00
33 lines
814 B
Rust
33 lines
814 B
Rust
![]() |
// run-rustfix
|
||
|
#![deny(rustdoc::invalid_html_tags)]
|
||
|
|
||
|
/// This `Vec<i32>` thing!
|
||
|
//~^ERROR unclosed HTML tag `i32`
|
||
|
//~|HELP try marking as source
|
||
|
pub struct Generic;
|
||
|
|
||
|
/// This `vec::Vec<i32>` thing!
|
||
|
//~^ERROR unclosed HTML tag `i32`
|
||
|
//~|HELP try marking as source
|
||
|
pub struct GenericPath;
|
||
|
|
||
|
/// This `i32<i32>` thing!
|
||
|
//~^ERROR unclosed HTML tag `i32`
|
||
|
//~|HELP try marking as source
|
||
|
pub struct PathsCanContainTrailingNumbers;
|
||
|
|
||
|
/// This `Vec::<i32>` thing!
|
||
|
//~^ERROR unclosed HTML tag `i32`
|
||
|
//~|HELP try marking as source
|
||
|
pub struct Turbofish;
|
||
|
|
||
|
/// This [link](https://rust-lang.org)`::<i32>` thing!
|
||
|
//~^ERROR unclosed HTML tag `i32`
|
||
|
//~|HELP try marking as source
|
||
|
pub struct BareTurbofish;
|
||
|
|
||
|
/// This <span>`Vec::<i32>`</span> thing!
|
||
|
//~^ERROR unclosed HTML tag `i32`
|
||
|
//~|HELP try marking as source
|
||
|
pub struct Nested;
|