Skip to content

Commit edf33fe

Browse files
committed
Add Destruct and Drop traits to static.rs
1 parent 6faa6a2 commit edf33fe

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/run/static.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
#[lang = "sized"]
2323
pub trait Sized {}
2424

25+
#[lang = "destruct"]
26+
pub trait Destruct {}
27+
28+
#[lang = "drop"]
29+
pub trait Drop {}
30+
2531
#[lang = "copy"]
2632
trait Copy {
2733
}

0 commit comments

Comments
 (0)