2019-07-08 14:04:52 +00:00
|
|
|
contract test {
|
|
|
|
function f() public returns (bool) {
|
|
|
|
bytes2 a = "a";
|
|
|
|
bytes2 x = "aa";
|
|
|
|
bytes2 b = "b";
|
|
|
|
return a < x && x < b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
2020-11-21 13:54:16 +00:00
|
|
|
// compileToEwasm: also
|
2019-07-08 14:04:52 +00:00
|
|
|
// ----
|
|
|
|
// f() -> true
|