mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
14 lines
358 B
Rust
14 lines
358 B
Rust
#![deny(rustdoc::broken_intra_doc_links)]
|
||
|
||
// An error in calculating spans while reporting intra-doc link resolution errors caused rustdoc to
|
||
// attempt to slice in the middle of a multibyte character. See
|
||
// https://github.com/rust-lang/rust/issues/55723
|
||
|
||
/// ## For example:
|
||
///
|
||
/// (arr[i])
|
||
//~^ ERROR `i`
|
||
pub fn test_ice() {
|
||
unimplemented!();
|
||
}
|