aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/tupleAssignments/error_fill.sol
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-06 20:45:31 +0800
committerGitHub <noreply@github.com>2018-08-06 20:45:31 +0800
commitbc73617f5ebc6d8f254b8e7faa630738c9967bd5 (patch)
treee59020b11b6bb90fa3b2e9d27177c484cd0549b8 /test/libsolidity/syntaxTests/tupleAssignments/error_fill.sol
parent3481d4e2ec89cd3154ec3b5e41ccc7dec9b52688 (diff)
parent08e431f94e6f8fda05c6507e487dcbbf3c155aae (diff)
downloaddexon-solidity-bc73617f5ebc6d8f254b8e7faa630738c9967bd5.tar
dexon-solidity-bc73617f5ebc6d8f254b8e7faa630738c9967bd5.tar.gz
dexon-solidity-bc73617f5ebc6d8f254b8e7faa630738c9967bd5.tar.bz2
dexon-solidity-bc73617f5ebc6d8f254b8e7faa630738c9967bd5.tar.lz
dexon-solidity-bc73617f5ebc6d8f254b8e7faa630738c9967bd5.tar.xz
dexon-solidity-bc73617f5ebc6d8f254b8e7faa630738c9967bd5.tar.zst
dexon-solidity-bc73617f5ebc6d8f254b8e7faa630738c9967bd5.zip
Merge pull request #4689 from ethereum/cleanup-050-tests
Cleanup 0.5.0 test cases
Diffstat (limited to 'test/libsolidity/syntaxTests/tupleAssignments/error_fill.sol')
-rw-r--r--test/libsolidity/syntaxTests/tupleAssignments/error_fill.sol5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/libsolidity/syntaxTests/tupleAssignments/error_fill.sol b/test/libsolidity/syntaxTests/tupleAssignments/error_fill.sol
index ae722391..32b381bb 100644
--- a/test/libsolidity/syntaxTests/tupleAssignments/error_fill.sol
+++ b/test/libsolidity/syntaxTests/tupleAssignments/error_fill.sol
@@ -1,4 +1,3 @@
-pragma experimental "v0.5.0";
contract C {
function f() public pure returns (uint, uint, bytes32) {
uint a;
@@ -8,5 +7,5 @@ contract C {
}
}
// ----
-// TypeError: (133-136): Type tuple(uint256,uint256,bytes32) is not implicitly convertible to expected type tuple(uint256,).
-// TypeError: (147-150): Type tuple(uint256,uint256,bytes32) is not implicitly convertible to expected type tuple(,bytes32).
+// TypeError: (103-106): Type tuple(uint256,uint256,bytes32) is not implicitly convertible to expected type tuple(uint256,).
+// TypeError: (117-120): Type tuple(uint256,uint256,bytes32) is not implicitly convertible to expected type tuple(,bytes32).