rust/tests/rustdoc/inline_cross/doc-hidden-broken-link-28480.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
409 B
Rust
Raw Normal View History

2025-01-29 11:20:22 -07:00
// https://github.com/rust-lang/rust/issues/28480
#![crate_name="foobar"]
2016-04-17 08:54:48 +02:00
//@ aux-build:rustdoc-hidden-sig.rs
//@ build-aux-docs
//@ ignore-cross-compile
//@ has rustdoc_hidden_sig/struct.Bar.html
//@ !has - '//a/@title' 'Hidden'
//@ has - '//a' 'u8'
2016-04-17 08:54:48 +02:00
extern crate rustdoc_hidden_sig;
2025-01-29 11:20:22 -07:00
//@ has foobar/struct.Bar.html
//@ !has - '//a/@title' 'Hidden'
//@ has - '//a' 'u8'
2016-04-17 08:54:48 +02:00
pub use rustdoc_hidden_sig::Bar;