summaryrefslogtreecommitdiffstats
path: root/tests/ui/deprecation/derive_on_deprecated_forbidden.rs
blob: 3fd434664675628768f4cf3243899909571076b7 (plain)
1
2
3
4
5
6
7
8
9
// build-pass (FIXME(62277): could be check-pass?)

#![forbid(deprecated)]

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

fn main() {}