solidity/test/libsolidity/syntaxTests/using/free_functions_implicit_conversion_err.sol
2022-04-01 23:41:18 -05:00

9 lines
299 B
Solidity

function id(uint16 x) pure returns(uint16) {
return x;
}
contract C {
using {id} for uint256;
}
// ----
// TypeError 3100: (85-87='id'): The function "id" cannot be bound to the type "uint256" because the type cannot be implicitly converted to the first argument of the function ("uint16").