about summary refs log tree commit diff
path: root/tests/rustdoc/auxiliary/issue-106421-force-unstable.rs
blob: 589d44c1f774dde94ac1de46219d53567b89c303 (plain)
1
2
3
4
5
6
7
8
9
//@ compile-flags: -Zforce-unstable-if-unmarked
#![crate_name="foo"]
pub struct FatalError;

impl FatalError {
    pub fn raise(self) -> ! {
        loop {}
    }
}