rust/tests/rustdoc/intra-doc/auxiliary/my-core.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
386 B
Rust
Raw Normal View History

2022-03-18 11:02:32 -05:00
#![feature(no_core, lang_items, rustdoc_internals, rustc_attrs)]
#![no_core]
2022-03-18 11:02:32 -05:00
#![rustc_coherence_is_core]
#![crate_type="rlib"]
2023-03-21 10:44:06 -05:00
#[rustc_doc_primitive = "char"]
/// Some char docs
mod char {}
impl char {
pub fn len_utf8(self) -> usize {
42
}
}
#[lang = "sized"]
pub trait Sized {}
#[lang = "clone"]
pub trait Clone: Sized {}
#[lang = "copy"]
pub trait Copy: Clone {}