Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
dropck
/
reservation.rs
blob: f7199d4ec44074d63c02aaf3e228e9f31f2746ea [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
rustc_attrs
)]
struct
ReservedDrop
;
#[
rustc_reservation_impl
=
"message"
]
impl
Drop
for
ReservedDrop
{
//~^ ERROR reservation `Drop` impls are not supported
fn
drop
(&
mut
self
)
{}
}
fn
main
()
{}