Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
extern
/
auxiliary
/
fat_drop.rs
blob: 768d29876b971eb36713fe076abe5ba23639fb3d [
file
] [
log
] [
blame
]
pub
static
mut
DROPPED
:
bool
=
false
;
pub
struct
S
{
_unsized
:
[
u8
]
}
impl
Drop
for
S
{
fn
drop
(&
mut
self
)
{
unsafe
{
DROPPED
=
true
;
}
}
}