mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 18:50:11 +00:00
10 lines
122 B
Rust
10 lines
122 B
Rust
// run-pass
|
|
// compile-flags: --test
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![deny(dead_code)]
|
|
|
|
#[rustc_main]
|
|
fn foo() { panic!(); }
|