rust/src/test/run-fail/die-macro-pure.rs
Alex Crichton daf5f5a4d1 Drop the '2' suffix from logging macros
Who doesn't like a massive renaming?
2013-10-22 08:09:56 -07:00

10 lines
77 B
Rust

// error-pattern:test
fn f() {
fail!("test");
}
fn main() {
f();
}