solidity/test/libsolidity/syntaxTests/tight_packing_literals.sol

9 lines
235 B
Solidity
Raw Normal View History

2018-03-21 13:45:32 +00:00
contract C {
function k() pure public returns (bytes memory) {
2018-03-21 13:45:32 +00:00
return abi.encodePacked(1);
}
}
// ----
// TypeError: (99-100): Cannot perform packed encoding for a literal. Please convert it to an explicit type first.