Update dead-code-closure-bang

This stdlib function went away, so update it to use current syntax.
This commit is contained in:
Steve Klabnik 2015-06-12 14:15:57 -04:00
parent bba934f19a
commit 13b9a725ea

View File

@ -15,5 +15,5 @@
fn main() {
let x = || panic!();
x();
std::io::println("Foo bar"); //~ ERROR: unreachable statement
println!("Foo bar"); //~ ERROR: unreachable statement
}