summary refs log tree commit diff
path: root/src/test/rustdoc/issue-23511.rs
blob: 6d421f3c2531ae1f09004293426f10f6f9090837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(lang_items)]
#![feature(rustdoc_internals)]
#![no_std]

pub mod str {
    #![doc(primitive = "str")]

    #[lang = "str_alloc"]
    impl str {
        // @has search-index.js foo
        pub fn foo(&self) {}
    }
}