rust/src/test/compile-fail/does-nothing.rs
2013-05-03 20:01:42 -04:00

3 lines
141 B
Rust

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