mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
195 B
Solidity
13 lines
195 B
Solidity
contract test {
|
|
int8 public x = 2;
|
|
int8 public y = 127;
|
|
int16 public q = 250;
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// x() -> 2
|
|
// y() -> 127
|
|
// q() -> 250
|