We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2337168 commit 7bdcac1Copy full SHA for 7bdcac1
test/integration/projects/solc-6/buidler.config.js
@@ -5,6 +5,6 @@ usePlugin("@nomiclabs/buidler-truffle5");
5
module.exports={
6
defaultNetwork: "buidlerevm",
7
solc: {
8
- version: "0.6.2"
+ version: "0.6.5"
9
}
10
};
test/integration/projects/solc-6/contracts/ContractA.sol
@@ -9,6 +9,9 @@ contract ContractA is ContractB {
uint counter;
uint errorCount;
11
12
+ uint private immutable _a = 100;
13
+ uint private immutable override _b = 100;
14
+
15
modifier overridden() override {
16
require(true);
17
_;
test/integration/projects/solc-6/contracts/ContractB.sol
@@ -3,6 +3,7 @@ pragma solidity ^0.6.0;
3
4
contract ContractB {
uint value;
+ uint b;
constructor() public {
0 commit comments