9 lines
120 B
Rust
9 lines
120 B
Rust
// error-pattern:mismatched types: expected `()` but found `bool`
|
|
|
|
class r {
|
|
new() {}
|
|
drop { true }
|
|
}
|
|
|
|
fn main() {
|
|
} |