mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
19 lines
338 B
Rust
19 lines
338 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;
|