1 2 3 4 5 6 7 8 9 10 11 12
#![feature(lang_items)] #![no_std] pub mod str { #![doc(primitive = "str")] #[lang = "str_alloc"] impl str { // @has search-index.js foo pub fn foo(&self) {} } }