blob: 3c03433a268d98f62d3ae2a1320858555e2c4e49 [file] [log] [blame]
pub trait Partial: Copy {
}
pub trait Complete: Partial {
}
impl<T> Partial for T where T: Complete {}
impl<T> Complete for T {} //~ ERROR the trait bound `T: std::marker::Copy` is not satisfied
fn main() {}