2020-07-07 02:35:07 +00:00
|
|
|
// aux-build:my-core.rs
|
2020-07-07 02:46:53 +00:00
|
|
|
// build-aux-docs
|
2020-07-07 02:35:07 +00:00
|
|
|
// ignore-cross-compile
|
2021-09-22 07:05:39 +00:00
|
|
|
// only-linux
|
2020-07-07 02:35:07 +00:00
|
|
|
|
2021-11-26 23:03:16 +00:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-07-07 02:35:07 +00:00
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
2020-07-08 15:20:43 +00:00
|
|
|
#![crate_type = "rlib"]
|
2020-07-07 02:35:07 +00:00
|
|
|
|
2020-11-29 01:25:41 +00:00
|
|
|
// @has prim_methods_external_core/index.html
|
2021-11-29 16:14:05 +00:00
|
|
|
// @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 17:23:29 +00:00
|
|
|
|
2020-07-07 02:35:07 +00:00
|
|
|
//! A [`char`] and its [`char::len_utf8`].
|
|
|
|
|
|
|
|
extern crate my_core;
|