aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/tight_packing_literals_fine.sol
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-03-21 21:45:32 +0800
committerchriseth <chris@ethereum.org>2018-04-12 06:10:25 +0800
commit44c0d7ca5e1d97027e4f1e24fb02fd805eda578d (patch)
tree3d6836106b38a1d62c3515206c83780b9d56d638 /test/libsolidity/syntaxTests/tight_packing_literals_fine.sol
parentd56acb68abdda19d0e5a684cdf8d40c3d7ce277e (diff)
downloaddexon-solidity-44c0d7ca5e1d97027e4f1e24fb02fd805eda578d.tar.gz
dexon-solidity-44c0d7ca5e1d97027e4f1e24fb02fd805eda578d.tar.zst
dexon-solidity-44c0d7ca5e1d97027e4f1e24fb02fd805eda578d.zip
Tests.
Diffstat (limited to 'test/libsolidity/syntaxTests/tight_packing_literals_fine.sol')
-rw-r--r--test/libsolidity/syntaxTests/tight_packing_literals_fine.sol11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/tight_packing_literals_fine.sol b/test/libsolidity/syntaxTests/tight_packing_literals_fine.sol
new file mode 100644
index 00000000..46407f71
--- /dev/null
+++ b/test/libsolidity/syntaxTests/tight_packing_literals_fine.sol
@@ -0,0 +1,11 @@
+contract C {
+ function f() pure public returns (bytes32) {
+ return keccak256(uint8(1));
+ }
+ function g() pure public returns (bytes) {
+ return abi.encode(1);
+ }
+ function h() pure public returns (bytes) {
+ return abi.encodePacked(uint8(1));
+ }
+}