Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
dropck
/
reservation.rs
blob: f7199d4ec44074d63c02aaf3e228e9f31f2746ea [
file
] [
log
] [
blame
]
#![
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
()
{}