2020-07-06 21:35:07 -05:00
|
|
|
//@ aux-build:my-core.rs
|
2020-07-06 21:46:53 -05:00
|
|
|
//@ build-aux-docs
|
2020-07-06 21:35:07 -05:00
|
|
|
//@ ignore-cross-compile
|
2021-09-22 02:05:39 -05:00
|
|
|
//@ only-linux
|
2020-07-06 21:35:07 -05:00
|
|
|
|
2021-11-26 17:03:16 -06:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-07-06 21:35:07 -05:00
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
2020-07-08 10:20:43 -05:00
|
|
|
#![crate_type = "rlib"]
|
2020-07-06 21:35:07 -05:00
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has prim_methods_external_core/index.html
|
|
|
|
//@ has - '//*[@id="main-content"]//a[@href="../my_core/primitive.char.html"]' 'char'
|
|
|
|
//@ has - '//*[@id="main-content"]//a[@href="../my_core/primitive.char.html#method.len_utf8"]' 'char::len_utf8'
|
2020-07-07 12:23:29 -05:00
|
|
|
|
2020-07-06 21:35:07 -05:00
|
|
|
//! A [`char`] and its [`char::len_utf8`].
|
|
|
|
|
|
|
|
extern crate my_core;
|