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

4 lines
139 B
Rust
Raw Normal View History

2011-06-14 15:11:35 -07:00
// error-pattern: unresolved name: this_does_nothing_what_the
2012-08-22 17:24:52 -07:00
fn main() { debug!("doing"); this_does_nothing_what_the; debug!("boing"); }