mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-11 01:39:24 +00:00
8 lines
104 B
Rust
8 lines
104 B
Rust
#![crate_type = "lib"]
|
|
|
|
pub struct Struct(pub u32);
|
|
|
|
impl Drop for Struct {
|
|
fn drop(&mut self) {}
|
|
}
|