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

3 lines
140 B
Rust
Raw Normal View History

2013-05-10 18:52:56 +02:00
// error-pattern: unresolved name `this_does_nothing_what_the`.
2013-09-29 20:06:21 -07:00
fn main() { info2!("doing"); this_does_nothing_what_the; info2!("boing"); }