solidity/test/libsolidity/semanticTests/storage/simple_accessor.sol
2020-07-07 12:16:18 +02:00

11 lines
141 B
Solidity

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