mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
243 B
16 lines
243 B
6 years ago
|
contract MyContract{
|
||
|
uint a = 0;
|
||
|
uint b = 0;
|
||
|
uint c = 0;
|
||
|
|
||
|
function setA(uint input_a, uint input_b) public{
|
||
|
setB(input_b);
|
||
|
a = input_a;
|
||
|
}
|
||
|
|
||
|
function setB(uint input) internal{
|
||
|
b = input;
|
||
|
}
|
||
|
|
||
|
}
|