mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 12:39:53 +00:00
11 lines
124 B
Rust
11 lines
124 B
Rust
//@ check-pass
|
|
|
|
#[derive(PartialEq)]
|
|
struct A { x: usize }
|
|
|
|
impl Drop for A {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
pub fn main() {}
|