summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/intra-doc/auxiliary/my-core.rs
blob: c050929db9682cb66502e0c11b924cbad44af617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![feature(no_core, lang_items, rustdoc_internals, rustc_attrs)]
#![no_core]
#![rustc_coherence_is_core]
#![crate_type="rlib"]

#[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 {}