rust/src/test/compile-fail/does-nothing.rs

3 lines
140 B
Rust
Raw Normal View History

2013-05-10 11:52:56 -05:00
// error-pattern: unresolved name `this_does_nothing_what_the`.
2012-08-22 19:24:52 -05:00
fn main() { debug!("doing"); this_does_nothing_what_the; debug!("boing"); }