diff options
author | Erik Kundt <bitshift@posteo.org> | 2018-07-19 00:08:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-19 00:08:32 +0800 |
commit | ccb5fccee5f7eea8993f2cbc77217abbccae36ce (patch) | |
tree | 55a5a1105720392a7fd5ad7e694433355754ea7e /test/libsolidity/syntaxTests/constructor/constructor.sol | |
parent | 8cc675150e5e554e438ee4624a9c3429fecba784 (diff) | |
parent | b0b35e1e6b762d3849710054fdb2e1909f6780d9 (diff) | |
download | dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.gz dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.bz2 dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.lz dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.xz dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.zst dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.zip |
Merge pull request #4215 from ethereum/constructorWorkaround
Disallow legacy constructor
Diffstat (limited to 'test/libsolidity/syntaxTests/constructor/constructor.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/constructor/constructor.sol | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/constructor/constructor.sol b/test/libsolidity/syntaxTests/constructor/constructor.sol new file mode 100644 index 00000000..aa3422cc --- /dev/null +++ b/test/libsolidity/syntaxTests/constructor/constructor.sol @@ -0,0 +1 @@ +contract A { constructor() public {} } |