mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-27 07:03:45 +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) {}
|
|
}
|