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

9 lines
120 B
Rust
Raw Normal View History

// error-pattern:mismatched types: expected `()` but found `bool`
class r {
new() {}
drop { true }
}
fn main() {
}