solidity/test/libsolidity/semanticTests/expressions/conditional_expression_different_types.sol
2019-07-01 15:37:46 +02:00

11 lines
215 B
Solidity

contract test {
function f(bool cond) public returns (uint) {
uint8 x = 0xcd;
uint16 y = 0xabab;
return cond ? x : y;
}
}
// ----
// f(bool): true -> 0xcd
// f(bool): false -> 0xabab