solidity/test/libsolidity/semanticTests/various/positive_integers_to_signed.sol

12 lines
171 B
Solidity
Raw Normal View History

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