rust/tests/rustdoc/auxiliary/issue-106421-force-unstable.rs
Michael Howell 24aa348586 Add test cases for inlining compiler-private items
Closes #106421

This was already fixed by
f5d43a052b, but now the test cases are
added.
2024-02-24 15:38:55 -07:00

10 lines
165 B
Rust

//@ compile-flags: -Zforce-unstable-if-unmarked
#![crate_name="foo"]
pub struct FatalError;
impl FatalError {
pub fn raise(self) -> ! {
loop {}
}
}