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
|
|
|
|
|
|
|
|
#![deny(intra_doc_link_resolution_failure)]
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
|
|
|
|
2020-07-07 17:23:29 +00: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-07 02:35:07 +00:00
|
|
|
//! A [`char`] and its [`char::len_utf8`].
|
|
|
|
|
|
|
|
extern crate my_core;
|