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