diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-13 01:46:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-13 01:46:05 +0800 |
commit | 71dc4011702c2ba047553aec1aad8dbae5dcabe7 (patch) | |
tree | 2738d82fda74c3b7603d6136f6895197b0bac3bd /test/libsolidity/syntaxTests/tight_packing_literals.sol | |
parent | d1e7e9ef5e3dfbf49045976da91a6a88dd28bbd3 (diff) | |
parent | 2084208dd3b304b14c9b4e180ea4c35fde324430 (diff) | |
download | dexon-solidity-71dc4011702c2ba047553aec1aad8dbae5dcabe7.tar.gz dexon-solidity-71dc4011702c2ba047553aec1aad8dbae5dcabe7.tar.zst dexon-solidity-71dc4011702c2ba047553aec1aad8dbae5dcabe7.zip |
Merge pull request #4280 from ethereum/disallow-sha3-suicide
[BREAKING] Disallow sha3 suicide
Diffstat (limited to 'test/libsolidity/syntaxTests/tight_packing_literals.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/tight_packing_literals.sol | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/test/libsolidity/syntaxTests/tight_packing_literals.sol b/test/libsolidity/syntaxTests/tight_packing_literals.sol index a190adc3..d6c7f0ba 100644 --- a/test/libsolidity/syntaxTests/tight_packing_literals.sol +++ b/test/libsolidity/syntaxTests/tight_packing_literals.sol @@ -2,9 +2,6 @@ contract C { function f() pure public returns (bytes32) { return keccak256(1); } - function g() pure public returns (bytes32) { - return sha3(1); - } function h() pure public returns (bytes32) { return sha256(1); } @@ -20,14 +17,10 @@ contract C { // Warning: (87-88): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. // Warning: (77-89): This function only accepts a single "bytes" argument. Please use "abi.encodePacked(...)" or a similar function to encode the data. // Warning: (77-89): The provided argument of type int_const 1 is not implicitly convertible to expected type bytes memory. -// Warning: (161-168): "sha3" has been deprecated in favour of "keccak256" -// Warning: (166-167): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. -// Warning: (161-168): This function only accepts a single "bytes" argument. Please use "abi.encodePacked(...)" or a similar function to encode the data. -// Warning: (161-168): The provided argument of type int_const 1 is not implicitly convertible to expected type bytes memory. -// Warning: (247-248): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. -// Warning: (240-249): This function only accepts a single "bytes" argument. Please use "abi.encodePacked(...)" or a similar function to encode the data. -// Warning: (240-249): The provided argument of type int_const 1 is not implicitly convertible to expected type bytes memory. -// Warning: (331-332): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. -// Warning: (321-333): This function only accepts a single "bytes" argument. Please use "abi.encodePacked(...)" or a similar function to encode the data. -// Warning: (321-333): The provided argument of type int_const 1 is not implicitly convertible to expected type bytes memory. -// Warning: (420-421): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. +// Warning: (168-169): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. +// Warning: (161-170): This function only accepts a single "bytes" argument. Please use "abi.encodePacked(...)" or a similar function to encode the data. +// Warning: (161-170): The provided argument of type int_const 1 is not implicitly convertible to expected type bytes memory. +// Warning: (252-253): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. +// Warning: (242-254): This function only accepts a single "bytes" argument. Please use "abi.encodePacked(...)" or a similar function to encode the data. +// Warning: (242-254): The provided argument of type int_const 1 is not implicitly convertible to expected type bytes memory. +// Warning: (341-342): The type of "int_const 1" was inferred as uint8. This is probably not desired. Use an explicit type to silence this warning. |