aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/tight_packing_literals_fine.sol
blob: 7bbc36d097dfed5eb2de7ed878a93cb975d311c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
    function k() pure public returns (bytes) {
        return abi.encodePacked(uint8(1));
    }
    function l() pure public returns (bytes) {
        return abi.encode(1);
    }
}
// ----