mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
247 B
Rust
16 lines
247 B
Rust
#![deny(dead_code)]
|
|
#![allow(unreachable_code)]
|
|
|
|
fn foo() { //~ ERROR function `foo` is never used
|
|
|
|
// none of these should have any dead_code exposed to the user
|
|
panic!();
|
|
|
|
panic!("foo");
|
|
|
|
panic!("bar {}", "baz")
|
|
}
|
|
|
|
|
|
fn main() {}
|