blob: 7026a49000c55d349766a586936fa0014f033656 [file] [log] [blame]
fn main() {
let a = &[];
let b: &Vec<u8> = &vec![];
a > b;
//~^ ERROR mismatched types
}