mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 19:57:47 +00:00
19 lines
337 B
Rust
19 lines
337 B
Rust
// check-pass
|
|
|
|
/// [`…foo`] [`…bar`] [`Err`]
|
|
pub struct Broken {}
|
|
|
|
/// [`…`] [`…`] [`Err`]
|
|
pub struct Broken2 {}
|
|
|
|
/// [`…`][…] [`…`][…] [`Err`]
|
|
pub struct Broken3 {}
|
|
|
|
/// […………………………][Broken3]
|
|
pub struct Broken4 {}
|
|
|
|
/// [Broken3][…………………………]
|
|
pub struct Broken5 {}
|
|
|
|
pub struct Err;
|