1
Fork 0

Add Destruct and Drop traits to static.rs

This commit is contained in:
bjorn3 2022-03-26 14:25:37 +01:00
parent 6faa6a28ba
commit edf33fe0a2

View file

@ -22,6 +22,12 @@
#[lang = "sized"]
pub trait Sized {}
#[lang = "destruct"]
pub trait Destruct {}
#[lang = "drop"]
pub trait Drop {}
#[lang = "copy"]
trait Copy {
}