Merge pull request #9215 from a3d4/fix-grammar-pragma-version

Fix pragma solidity version in antlr grammar
This commit is contained in:
chriseth
2020-06-23 12:34:29 +02:00
committed by GitHub
2 changed files with 8 additions and 16 deletions
@@ -0,0 +1,7 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity < 142857;
pragma solidity >= 0.0;
pragma solidity >= 0.0.0;
contract C {
}