summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2397-do-not-recommend/unstable-feature.rs
blob: f0c5c222e786f041132421b64149804c36d8f7e7 (plain)
1
2
3
4
5
6
7
8
9
10
trait Foo {
}

#[do_not_recommend]
//~^ ERROR the `#[do_not_recommend]` attribute is an experimental feature
impl Foo for i32 {
}

fn main() {
}