diff options
author | chriseth <chris@ethereum.org> | 2018-10-24 20:52:11 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-10-24 20:52:55 +0800 |
commit | 9e6356a763e31f40aadc91370ad8143e739dc256 (patch) | |
tree | 08873308a9caf184a063e40764207cdd0913852b /test/compilationTests/corion/module.sol | |
parent | eded236e67d714802e62365381c6aa2588a091c5 (diff) | |
download | dexon-solidity-9e6356a763e31f40aadc91370ad8143e739dc256.tar.gz dexon-solidity-9e6356a763e31f40aadc91370ad8143e739dc256.tar.zst dexon-solidity-9e6356a763e31f40aadc91370ad8143e739dc256.zip |
Set pragma to arbitrary.
Diffstat (limited to 'test/compilationTests/corion/module.sol')
-rw-r--r-- | test/compilationTests/corion/module.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/corion/module.sol b/test/compilationTests/corion/module.sol index bd6952b1..f663d9c2 100644 --- a/test/compilationTests/corion/module.sol +++ b/test/compilationTests/corion/module.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.4.11; +pragma solidity >=0.0; contract abstractModuleHandler { function transfer(address payable from, address payable to, uint256 value, bool fee) external returns (bool success) {} |