2019-07-01 13:24:05 +00:00
|
|
|
contract test {
|
|
|
|
function f() public returns(uint d) {
|
|
|
|
return true ? 5 : 10;
|
|
|
|
}
|
|
|
|
}
|
2020-04-17 20:24:33 +00:00
|
|
|
// ====
|
|
|
|
// compileViaYul: also
|
2020-11-21 13:54:16 +00:00
|
|
|
// compileToEwasm: also
|
2019-07-01 13:24:05 +00:00
|
|
|
// ----
|
|
|
|
// f() -> 5
|