rust/src/test/compile-fail/block-must-not-have-result-res.rs

8 lines
110 B
Rust
Raw Normal View History

// error-pattern:mismatched types: expected `()` but found `bool`
2012-08-15 20:46:55 -05:00
struct r {
drop { true }
}
fn main() {
}