mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 18:54:33 +00:00
11 lines
118 B
Rust
11 lines
118 B
Rust
struct R;
|
|
|
|
impl Drop for R {
|
|
fn drop(&mut self) {
|
|
true //~ ERROR mismatched types
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
}
|