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);
}
}
// ----
|