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.
37 lines
659 B
37 lines
659 B
contract C {
|
|
uint private a;
|
|
|
|
function ifWithoutElse() public {
|
|
if (a > 100) {
|
|
a = 100;
|
|
}
|
|
}
|
|
|
|
function ifWithElse() public {
|
|
if (a < 50) {
|
|
a = 50;
|
|
} else {
|
|
a /= 2;
|
|
}
|
|
}
|
|
|
|
function ifWithElseIf() public {
|
|
if (a % 2 == 0) {
|
|
a += 1;
|
|
} else if (a % 3 == 0) {
|
|
a /= 3;
|
|
} else if (a % 4 == 0) {
|
|
a *= 2;
|
|
}
|
|
}
|
|
|
|
function ifWithElseIfElse() public {
|
|
if (a >= 100) {
|
|
a = 100;
|
|
} else if (a < 50) {
|
|
a = 80;
|
|
} else {
|
|
a = 75;
|
|
}
|
|
}
|
|
} |