2023-03-21 10:44:06 -05:00
|
|
|
// Crate tree without a `rustc_doc_primitive` module for primitive type linked to by a doc link.
|
2022-10-16 11:39:53 -05:00
|
|
|
|
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
|
|
|
#![feature(no_core, lang_items, rustc_attrs)]
|
|
|
|
#![no_core]
|
|
|
|
#![rustc_coherence_is_core]
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has no_doc_primitive/index.html
|
2022-10-16 11:39:53 -05:00
|
|
|
//! A [`char`] and its [`char::len_utf8`].
|
|
|
|
impl char {
|
|
|
|
pub fn len_utf8(self) -> usize {
|
|
|
|
42
|
|
|
|
}
|
|
|
|
}
|