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
|
|
|
|
2020-07-30 10:38:55 -07:00
|
|
|
#![deny(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-07-10 22:25:36 -04:00
|
|
|
// @has - '//*[@id="main"]//a[@href="../my_core/primitive.char.html"]' 'char'
|
|
|
|
// @has - '//*[@id="main"]//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;
|