diff options
Diffstat (limited to 'test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol b/test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol deleted file mode 100644 index 23484567..00000000 --- a/test/libsolidity/syntaxTests/tupleAssignments/warn_fill_vardecl.sol +++ /dev/null @@ -1,8 +0,0 @@ -contract C { - function f() public pure returns (uint, uint, uint, uint) { - (uint a, uint b,) = f(); - a; b; - } -} -// ---- -// Warning: (76-99): Different number of components on the left hand side (3) than on the right hand side (4). |