blob: 1616d666c1b9690d3e9e835f8d7396572a2c438e [file] [log] [blame]
pub fn main() {
let c: char = 'x';
let d: char = 'x';
assert_eq!(c, 'x');
assert_eq!('x', c);
assert_eq!(c, c);
assert_eq!(c, d);
assert_eq!(d, c);
assert_eq!(d, 'x');
assert_eq!('x', d);
}