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

11 lines
142 B
Solidity

contract test {
uint256 public data;
constructor() {
data = 8;
}
}
// ====
// compileToEwasm: also
// ----
// data() -> 8