blob: b7f9caee8948f5096a4685c3724e1510409d2e59 [file] [log] [blame]
struct X { x: i32 }
fn main() {
let mut b: Vec<X> = vec![];
b.sort();
//~^ ERROR `X: std::cmp::Ord` is not satisfied
}