blob: e5eba1d8d48b41884039aaf2bfcee5a5b69acac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Crate tree without a `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`].
impl char {
pub fn len_utf8(self) -> usize {
42
}
}
|