rust/tests/rustdoc/intra-doc/prim-methods-external-core.rs

18 lines
504 B
Rust
Raw Normal View History

// aux-build:my-core.rs
2020-07-06 21:46:53 -05:00
// 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
2021-11-29 10:14:05 -06:00
// @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;