aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-03-18 00:37:02 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-03-18 01:06:52 +0800
commitd5102c1db7cd2334e127ff684a6ecdd6aff156c6 (patch)
treee083e24cc36d0199e7c03d27c8d2f62265a4b2af
parent2c4bce2d62dc8bfc752858db12c625aec6e5960f (diff)
downloaddexon-solidity-d5102c1db7cd2334e127ff684a6ecdd6aff156c6.tar.gz
dexon-solidity-d5102c1db7cd2334e127ff684a6ecdd6aff156c6.tar.zst
dexon-solidity-d5102c1db7cd2334e127ff684a6ecdd6aff156c6.zip
Disallow constructor in interfaces
-rw-r--r--docs/contracts.rst1
-rw-r--r--libsolidity/analysis/TypeChecker.cpp3
-rw-r--r--test/libsolidity/SolidityNameAndTypeResolution.cpp2
3 files changed, 5 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 921d2870..28c003bd 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -931,6 +931,7 @@ Interfaces
Interfaces are similar to abstract contracts, but they cannot have any functions implemented. There are further restrictions:
#. Cannot inherit other contracts or interfaces.
+#. Cannot define constructor.
#. Cannot define variables.
#. Cannot define structs.
#. Cannot define enums.
diff --git a/libsolidity/analysis/TypeChecker.cpp b/libsolidity/analysis/TypeChecker.cpp
index 3dffecdb..87951003 100644
--- a/libsolidity/analysis/TypeChecker.cpp
+++ b/libsolidity/analysis/TypeChecker.cpp
@@ -463,6 +463,9 @@ bool TypeChecker::visit(FunctionDefinition const& _function)
typeError(_function.location(), "Functions in interfaces cannot have an implementation.");
_function.body().accept(*this);
}
+ if (_function.isConstructor())
+ if (m_scope->contractKind() == ContractDefinition::ContractKind::Interface)
+ typeError(_function.location(), "Constructor cannot be defined in interfaces.");
return false;
}
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp
index f6c875f1..39306f84 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -5343,7 +5343,7 @@ BOOST_AUTO_TEST_CASE(interface_constructor)
function I();
}
)";
- success(text);
+ CHECK_ERROR(text, TypeError, "Constructor cannot be defined in interfaces");
}
BOOST_AUTO_TEST_CASE(interface_functions)