mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
403 B
Solidity
8 lines
403 B
Solidity
contract C {
|
|
uint constant a = addmod(3, 4, 0.1);
|
|
uint constant b = mulmod(3, 4, 0.1);
|
|
}
|
|
// ----
|
|
// TypeError 9553: (48-51): Invalid type for argument in function call. Invalid implicit conversion from rational_const 1 / 10 to uint256 requested.
|
|
// TypeError 9553: (89-92): Invalid type for argument in function call. Invalid implicit conversion from rational_const 1 / 10 to uint256 requested.
|