blob: 6054d8f12f5429547edfa3518a76feb581c08184 [file] [log] [blame] [edit]
#![feature(rustc_attrs)]
#![feature(rustdoc_internals)]
#![no_std]
// https://github.com/rust-lang/rust/issues/23511
#![crate_name="issue_23511"]
pub mod str {
#![rustc_doc_primitive = "str"]
impl str {
//@ hasraw search-index.js foo
#[rustc_allow_incoherent_impl]
pub fn foo(&self) {}
}
}