147a2d655f
This reverts commit d08b443fff
.
13 lines
214 B
Rust
13 lines
214 B
Rust
fn main() {
|
|
let char c = 'x';
|
|
let char d = 'x';
|
|
assert (c == 'x');
|
|
assert ('x' == c);
|
|
assert (c == c);
|
|
assert (c == d);
|
|
assert (d == c);
|
|
assert (d == 'x');
|
|
assert ('x' == d);
|
|
}
|
|
|