mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
269 B
Solidity
7 lines
269 B
Solidity
type M is int;
|
|
type E is uint;
|
|
|
|
function suffix(M x, E y) pure suffix returns (M) {}
|
|
// ----
|
|
// TypeError 1587: (47-57): Literal suffix function has invalid parameter types. The mantissa parameter must be an integer. The exponent parameter must be an unsigned integer.
|