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

9 lines
304 B
Solidity

contract C {
function f1() public pure returns (bytes memory) {
return abi.encodePacked(0.1, 1);
}
}
// ----
// TypeError: (98-101): Fractional numbers cannot yet be encoded.
// TypeError: (103-104): Cannot perform packed encoding for a literal. Please convert it to an explicit type first.