mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00

Some rustdoc tests are `no_core` and need to have `MetaSized` and `PointeeSized` added to them.
27 lines
563 B
Rust
27 lines
563 B
Rust
// Crate tree without a `rustc_doc_primitive` module for primitive type linked to by a doc link.
|
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
|
#![feature(no_core, lang_items, rustc_attrs)]
|
|
#![no_core]
|
|
#![rustc_coherence_is_core]
|
|
#![crate_type = "rlib"]
|
|
|
|
|
|
//@ has no_doc_primitive/index.html
|
|
//! A [`char`] and its [`char::len_utf8`].
|
|
|
|
#[lang = "pointee_sized"]
|
|
pub trait PointeeSized {}
|
|
|
|
#[lang = "meta_sized"]
|
|
pub trait MetaSized: PointeeSized {}
|
|
|
|
#[lang = "sized"]
|
|
pub trait Sized: MetaSized {}
|
|
|
|
impl char {
|
|
pub fn len_utf8(self) -> usize {
|
|
42
|
|
}
|
|
}
|