Create concrete.sol

pull/1848/head
DarrenChangJR 2 years ago committed by GitHub
parent 2a1d7d59c2
commit 0a19a5536f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      tests/unit/core/test_data/contract_declaration/concrete.sol

@ -0,0 +1,9 @@
pragma solidity ^0.8.0;
contract SimpleStorage {
uint256 public value;
function setValue(uint256 newValue) public {
value = newValue;
}
}
Loading…
Cancel
Save