rust/tests/ui/rfc-2397-do-not-recommend/unstable-feature.rs
2023-01-12 08:41:21 -03:00

11 lines
145 B
Rust

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