blob: b3ce31bf0d356bb2df64ec92bee2718180fa11a3 [file] [log] [blame] [edit]
struct NoCloneOrEq;
#[derive(PartialEq)]
struct E {
x: NoCloneOrEq //~ ERROR binary operation `==` cannot be applied to type `NoCloneOrEq`
}
#[derive(Clone)]
struct C {
x: NoCloneOrEq
//~^ ERROR `NoCloneOrEq: Clone` is not satisfied
}
fn main() {}