2022-03-18 11:02:32 -05:00
|
|
|
#![feature(rustc_attrs)]
|
2021-11-26 17:03:16 -06:00
|
|
|
#![feature(rustdoc_internals)]
|
2015-04-07 19:35:23 -05:00
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
pub mod str {
|
|
|
|
#![doc(primitive = "str")]
|
|
|
|
|
|
|
|
impl str {
|
2022-08-10 15:10:04 -05:00
|
|
|
// @hastext search-index.js foo
|
2022-03-18 11:02:32 -05:00
|
|
|
#[rustc_allow_incoherent_impl]
|
2015-04-07 19:35:23 -05:00
|
|
|
pub fn foo(&self) {}
|
|
|
|
}
|
|
|
|
}
|