mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
18 lines
504 B
Rust
18 lines
504 B
Rust
// aux-build:my-core.rs
|
|
// build-aux-docs
|
|
// ignore-cross-compile
|
|
// only-linux
|
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
|
#![feature(no_core, lang_items)]
|
|
#![no_core]
|
|
#![crate_type = "rlib"]
|
|
|
|
// @has prim_methods_external_core/index.html
|
|
// @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'
|
|
|
|
//! A [`char`] and its [`char::len_utf8`].
|
|
|
|
extern crate my_core;
|