solidity/test/libsolidity/semanticTests/various/positive_integers_to_signed.sol
2022-05-19 20:23:28 +02:00

12 lines
172 B
Solidity

contract test {
int8 public x = 2;
int8 public y = 127;
int16 public q = 250;
}
// ====
// compileToEwasm: also
// ----
// x() -> 2
// y() -> 127
// q() -> 250