rust/src/test/compile-fail/does-nothing.rs
2012-07-30 18:38:15 -07:00

4 lines
139 B
Rust

// error-pattern: unresolved name: this_does_nothing_what_the
fn main() { debug!{"doing"}; this_does_nothing_what_the; debug!{"boing"}; }