solidity/test/libsolidity/semanticTests/various/positive_integers_to_signed.sol
2020-03-19 14:42:25 +01:00

11 lines
141 B
Solidity

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