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-07 10:39:10 -07:00
|
|
|
// ignore-tidy-linelength
|
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-07-07 10:23:29 -07:00
|
|
|
// @has intra_link_prim_methods_external_core/index.html
|
|
|
|
// @has - '//*[@id="main"]//a[@href="https://doc.rust-lang.org/nightly/std/primitive.char.html"]' 'char'
|
|
|
|
// @has - '//*[@id="main"]//a[@href="https://doc.rust-lang.org/nightly/std/primitive.char.html#method.len_utf8"]' 'char::len_utf8'
|
|
|
|
|
2020-07-06 19:35:07 -07:00
|
|
|
//! A [`char`] and its [`char::len_utf8`].
|
|
|
|
|
|
|
|
extern crate my_core;
|