rust/tests/ui/rfc-2397-do-not-recommend/feature-gate-do_not_recommend.rs
2023-01-11 09:32:08 +00:00

22 lines
248 B
Rust

#![feature(do_not_recommend)]
pub trait Foo {
}
impl Foo for i32 {
}
pub trait Bar {
}
#[do_not_recommend]
impl<T: Foo> Bar for T {
}
fn stuff<T: Bar>(_: T) {}
fn main() {
stuff(1u8);
//~^ the trait bound `u8: Foo` is not satisfied
}