mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
12 lines
161 B
Rust
12 lines
161 B
Rust
//@ run-pass
|
|
|
|
//@ compile-flags:-C panic=abort
|
|
//@ no-prefer-dynamic
|
|
//@ ignore-backends: gcc
|
|
|
|
#![feature(panic_abort)]
|
|
|
|
extern crate panic_abort;
|
|
|
|
fn main() {}
|