blob: c7a13bbf606cbe68d0db8bbfa9b87c05021e31e0 [file] [log] [blame]
#![deny(intra_doc_link_resolution_failure)]
// 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]` cannot be resolved, ignoring it...
pub fn test_ice() {
unimplemented!();
}