about summary refs log tree commit diff
path: root/tests/ui/test-attrs/test-main-not-dead.rs
blob: c90dbddb83b864e2478c25f32e12b9c5261a7716 (plain)
1
2
3
4
5
6
//@ run-pass
//@ compile-flags: --test

#![deny(dead_code)]

fn main() { panic!(); }