rust/tests/rustdoc/force-unstable-if-unmarked-106421-not-internal.rs

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

12 lines
442 B
Rust
Raw Permalink Normal View History

//@ aux-build:issue-106421-force-unstable.rs
//@ ignore-cross-compile
// This is the version where a non-compiler-internal crate inlines a compiler-internal one.
// In this case, the item shouldn't be documented, because regular users can't get at it.
2024-07-12 19:36:21 -05:00
// https://github.com/rust-lang/rust/issues/106421
#![crate_name="bar"]
extern crate foo;
2024-07-12 19:36:21 -05:00
//@ !has bar/struct.FatalError.html '//*[@id="method.raise"]' 'fn raise'
pub use foo::FatalError;