os-rust/tests/ui/block-result/block-must-not-have-result-res.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
118 B
Rust
Raw Normal View History

struct R;
impl Drop for R {
2013-09-16 21:18:07 -04:00
fn drop(&mut self) {
2015-01-12 01:01:44 -05:00
true //~ ERROR mismatched types
}
}
fn main() {
}