mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-09 13:48:00 +00:00

Some rustdoc tests are `no_core` and need to have `MetaSized` and `PointeeSized` added to them.
23 lines
628 B
Rust
23 lines
628 B
Rust
//@ aux-build:primitive-doc.rs
|
|
//@ compile-flags: --extern-html-root-url=primitive_doc=../ -Z unstable-options
|
|
//@ only-linux
|
|
|
|
#![feature(no_core, lang_items)]
|
|
#![no_core]
|
|
|
|
#[lang = "pointee_sized"]
|
|
pub trait PointeeSized {}
|
|
|
|
#[lang = "meta_sized"]
|
|
pub trait MetaSized: PointeeSized {}
|
|
|
|
#[lang = "sized"]
|
|
pub trait Sized: MetaSized {}
|
|
|
|
extern crate primitive_doc;
|
|
|
|
//@ has 'cross_crate_primitive_doc/fn.foo.html' '//a[@href="../primitive_doc/primitive.usize.html"]' 'usize'
|
|
//@ has 'cross_crate_primitive_doc/fn.foo.html' '//a[@href="../primitive_doc/primitive.usize.html"]' 'link'
|
|
/// [link](usize)
|
|
pub fn foo() -> usize { 0 }
|