rust/tests/ui/rfcs/rfc-2397-do-not-recommend/unstable-feature.rs
2023-06-05 16:09:46 +00: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() {
}