aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/getter/nested_structs.sol
diff options
context:
space:
mode:
Diffstat (limited to 'test/libsolidity/syntaxTests/getter/nested_structs.sol')
-rw-r--r--test/libsolidity/syntaxTests/getter/nested_structs.sol11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/getter/nested_structs.sol b/test/libsolidity/syntaxTests/getter/nested_structs.sol
new file mode 100644
index 00000000..1068f287
--- /dev/null
+++ b/test/libsolidity/syntaxTests/getter/nested_structs.sol
@@ -0,0 +1,11 @@
+contract C {
+ struct Y {
+ uint b;
+ }
+ struct X {
+ Y a;
+ }
+ mapping(uint256 => X) public m;
+}
+// ----
+// TypeError: (88-118): The following types are only supported for getters in the new experimental ABI encoder: struct C.Y memory. Either remove "public" or use "pragma experimental ABIEncoderV2;" to enable the feature.