mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 16:31:32 +00:00
10 lines
251 B
Rust
10 lines
251 B
Rust
pub struct ZeroLengthThingWithDestructor;
|
|
impl Drop for ZeroLengthThingWithDestructor {
|
|
fn drop(&mut self) {}
|
|
}
|
|
impl ZeroLengthThingWithDestructor {
|
|
pub fn new() -> ZeroLengthThingWithDestructor {
|
|
ZeroLengthThingWithDestructor
|
|
}
|
|
}
|