mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-13 23:30:31 +00:00
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 {}
|
|
}
|
|
}
|