From f7a9c4203e35439de6ff4bdd94c7083c16b73e43 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 29 Jun 2018 17:41:59 +0200 Subject: Disallow packed encoding of literals. --- test/libsolidity/syntaxTests/tight_packing_literals.sol | 2 +- test/libsolidity/syntaxTests/tight_packing_literals_050.sol | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 test/libsolidity/syntaxTests/tight_packing_literals_050.sol (limited to 'test/libsolidity/syntaxTests') diff --git a/test/libsolidity/syntaxTests/tight_packing_literals.sol b/test/libsolidity/syntaxTests/tight_packing_literals.sol index be8482ff..a136aa77 100644 --- a/test/libsolidity/syntaxTests/tight_packing_literals.sol +++ b/test/libsolidity/syntaxTests/tight_packing_literals.sol @@ -5,4 +5,4 @@ contract C { } // ---- -// Warning: (92-93): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. +// TypeError: (92-93): Cannot perform packed encoding for a literal. Please convert it to an explicit type first. diff --git a/test/libsolidity/syntaxTests/tight_packing_literals_050.sol b/test/libsolidity/syntaxTests/tight_packing_literals_050.sol deleted file mode 100644 index 4e6210c6..00000000 --- a/test/libsolidity/syntaxTests/tight_packing_literals_050.sol +++ /dev/null @@ -1,9 +0,0 @@ -pragma experimental "v0.5.0"; -contract C { - function k() pure public returns (bytes) { - return abi.encodePacked(1); - } -} - -// ---- -// TypeError: (122-123): Cannot perform packed encoding for a literal. Please convert it to an explicit type first. -- cgit