solidity/test/libsolidity/semanticTests/storage/simple_accessor.sol
2023-05-11 10:56:55 -05:00

9 lines
110 B
Solidity

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