From 621ce3df20ad019cf3e86cc2bbae22a59610847f Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 29 Nov 2018 17:59:34 +0100 Subject: Test. --- .../constructor/abstract_creation_forward_reference.sol | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/libsolidity/syntaxTests/constructor/abstract_creation_forward_reference.sol (limited to 'test/libsolidity/syntaxTests/constructor') diff --git a/test/libsolidity/syntaxTests/constructor/abstract_creation_forward_reference.sol b/test/libsolidity/syntaxTests/constructor/abstract_creation_forward_reference.sol new file mode 100644 index 00000000..2e6aeaa5 --- /dev/null +++ b/test/libsolidity/syntaxTests/constructor/abstract_creation_forward_reference.sol @@ -0,0 +1,15 @@ +// This used to cause an internal error because of the visitation order. +contract Test { + function createChild() public { + Child asset = new Child(); + } +} + +contract Parent { + constructor(address _address) public {} +} + +contract Child is Parent { +} +// ---- +// TypeError: (146-155): Trying to create an instance of an abstract contract. -- cgit v1.2.3