about summary refs log tree commit diff
path: root/tests/rustdoc/intra-doc/prim-methods-external-core.rs
blob: 41a07460b06b5102f65b3d75a9a223b8f072eec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@ 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;