aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/structs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-09-05 02:21:03 +0800
committerGitHub <noreply@github.com>2018-09-05 02:21:03 +0800
commit85debe77d9b616a37ecf0ed080045b3747b3aa7d (patch)
tree95ae6123afb0caf32ecb2405a54aa34635ee71ca /test/libsolidity/syntaxTests/structs
parentc9f50b36aac0328d65fa4061e982ce26b997add6 (diff)
parent3d7b0d691f8b5f86cd81bd56f2a40508832e9a0e (diff)
downloaddexon-solidity-85debe77d9b616a37ecf0ed080045b3747b3aa7d.tar
dexon-solidity-85debe77d9b616a37ecf0ed080045b3747b3aa7d.tar.gz
dexon-solidity-85debe77d9b616a37ecf0ed080045b3747b3aa7d.tar.bz2
dexon-solidity-85debe77d9b616a37ecf0ed080045b3747b3aa7d.tar.lz
dexon-solidity-85debe77d9b616a37ecf0ed080045b3747b3aa7d.tar.xz
dexon-solidity-85debe77d9b616a37ecf0ed080045b3747b3aa7d.tar.zst
dexon-solidity-85debe77d9b616a37ecf0ed080045b3747b3aa7d.zip
Merge pull request #4866 from bakaoh/issue4743
Fix#4743: Incorrect source location for nameless parameters
Diffstat (limited to 'test/libsolidity/syntaxTests/structs')
-rw-r--r--test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs.sol2
-rw-r--r--test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs2.sol2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs.sol b/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs.sol
index 89d1ddd9..c8f9185c 100644
--- a/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs.sol
+++ b/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs.sol
@@ -4,4 +4,4 @@ contract C {
}
}
// ----
-// TypeError: (91-92): Internal or recursive type is not allowed for public or external functions.
+// TypeError: (91-99): Internal or recursive type is not allowed for public or external functions.
diff --git a/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs2.sol b/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs2.sol
index 1c31e180..a8b7ac75 100644
--- a/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs2.sol
+++ b/test/libsolidity/syntaxTests/structs/recursion/return_recursive_structs2.sol
@@ -4,4 +4,4 @@ contract C {
}
}
// ----
-// TypeError: (94-95): Internal or recursive type is not allowed for public or external functions.
+// TypeError: (94-102): Internal or recursive type is not allowed for public or external functions.