solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/113_exp_warn_literal_base_1.sol

9 lines
278 B
Solidity
Raw Normal View History

contract test {
function f() pure public returns(uint) {
uint8 x = 100;
return 10**x;
}
}
// ----
// Warning: (99-104): Result of exponentiation has type uint8 and thus might overflow. Silence this warning by converting the literal to the expected type.