blob: 3b8ffd58cb54ec1d5b81064c2aaaf190d8ec6a27 [file] [log] [blame] [edit]
#![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() {}