2020-07-09 11:14:33 +00:00
|
|
|
contract C {
|
|
|
|
uint constant x = 1 ether;
|
|
|
|
|
|
|
|
function f() public view returns(uint) { return x; }
|
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// compileViaYul: also
|
2020-11-21 13:54:16 +00:00
|
|
|
// compileToEwasm: also
|
2020-07-09 11:14:33 +00:00
|
|
|
// ----
|
|
|
|
// f() -> 1000000000000000000
|