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
|
2020-07-08 09:48:15 -07:00
|
|
|
// ignore-windows
|
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-05-04 23:36:33 -04:00
|
|
|
// @has - '//*[@id="main"]//a[@href="{{channel}}/std/primitive.char.html"]' 'char'
|
|
|
|
// @has - '//*[@id="main"]//a[@href="{{channel}}/std/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;
|