aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol
diff options
context:
space:
mode:
Diffstat (limited to 'test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol')
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol b/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol
deleted file mode 100644
index b0691778..00000000
--- a/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol
+++ /dev/null
@@ -1,11 +0,0 @@
-pragma experimental "v0.5.0";
-contract C {
- function f() private pure {}
- function a() public {
- uint x;
- uint y;
- (x, y) = (f(), f());
- }
-}
-// ----
-// TypeError: (152-155): Tuple component cannot be empty.