rustc/tests/rustdoc/issue-23511.rs
2023-08-02 10:33:26 +02:00

14 lines
244 B
Rust

#![feature(rustc_attrs)]
#![feature(rustdoc_internals)]
#![no_std]
pub mod str {
#![doc(primitive = "str")]
impl str {
// @hasraw search-index.js foo
#[rustc_allow_incoherent_impl]
pub fn foo(&self) {}
}
}