]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-dropck-ugeh-2.rs
New upstream version 1.37.0+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-dropck-ugeh-2.rs
CommitLineData
32a655c1
SL
1#![deny(deprecated)]
2#![feature(dropck_parametricity)]
3157f602 3
32a655c1 4struct Foo;
a7813a04 5
32a655c1
SL
6impl Drop for Foo {
7 #[unsafe_destructor_blind_to_params]
8 //~^ ERROR use of deprecated attribute `dropck_parametricity`
9 fn drop(&mut self) {}
54a0048b 10}
3157f602
XL
11
12fn main() {}