rust/tests/ui/test-attrs/test-main-not-dead.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
85 B
Rust
Raw Normal View History

//@ run-pass
//@ compile-flags: --test
#![deny(dead_code)]
fn main() { panic!(); }