solidity/test/libsolidity/syntaxTests/types/encoding_fractional.sol
2019-01-17 14:28:03 +01:00

8 lines
181 B
Solidity

contract C {
function f1() public pure returns (bytes memory) {
return abi.encode(0.1, 1);
}
}
// ----
// TypeError: (92-95): Fractional numbers cannot yet be encoded.