mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
203 B
Solidity
18 lines
203 B
Solidity
contract A {
|
|
uint8 immutable a;
|
|
uint8 x;
|
|
|
|
constructor() {
|
|
a = 3;
|
|
x = a;
|
|
}
|
|
|
|
function readX() public view returns (uint8) {
|
|
return x;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// readX() -> 3
|