Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/integration/projects/solc-6/buidler.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ usePlugin("@nomiclabs/buidler-truffle5");
module.exports={
defaultNetwork: "buidlerevm",
solc: {
version: "0.6.2"
version: "0.6.5"
}
};
3 changes: 3 additions & 0 deletions test/integration/projects/solc-6/contracts/ContractA.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ contract ContractA is ContractB {
uint counter;
uint errorCount;

uint private immutable _a = 100;
uint private immutable override _b = 100;

modifier overridden() override {
require(true);
_;
Expand Down
1 change: 1 addition & 0 deletions test/integration/projects/solc-6/contracts/ContractB.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pragma solidity ^0.6.0;

contract ContractB {
uint value;
uint b;

constructor() public {
}
Expand Down