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

4 lines
131 B
Rust
Raw Normal View History

2011-06-14 17:11:35 -05:00
// error-pattern: unresolved name: this_does_nothing_what_the
2011-07-27 07:19:39 -05:00
fn main() { log "doing"; this_does_nothing_what_the; log "boing"; }