Closes #106421 This was already fixed by f5d43a052b9eb464e54af819143467954d814a24, but now the test cases are added.
10 lines
165 B
Rust
10 lines
165 B
Rust
//@ compile-flags: -Zforce-unstable-if-unmarked
|
|
#![crate_name="foo"]
|
|
pub struct FatalError;
|
|
|
|
impl FatalError {
|
|
pub fn raise(self) -> ! {
|
|
loop {}
|
|
}
|
|
}
|