about summary refs log tree commit diff
path: root/tests/ui/deprecation/derive_on_deprecated.rs
blob: b3d784aec37b3855992e00b60277f14a34a1b510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ build-pass (FIXME(62277): could be check-pass?)

#![deny(deprecated)]

#[deprecated = "oh no"]
#[derive(Default)]
struct X;

#[deprecated(note="Do not use this")]
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Default, Hash)]
pub struct Step<I> {
    _skip: Option<I>,
}

fn main() {}