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.
60 lines
720 B
60 lines
720 B
pragma solidity ^0.4.24;
|
|
|
|
contract naming {
|
|
|
|
enum Numbers {ONE, TWO}
|
|
enum numbers {ONE, TWO}
|
|
|
|
uint constant MY_CONSTANT = 1;
|
|
uint constant MY_other_CONSTANT = 2;
|
|
|
|
uint Var_One = 1;
|
|
uint varTwo = 2;
|
|
|
|
struct test {
|
|
|
|
}
|
|
|
|
struct Test {
|
|
|
|
}
|
|
|
|
event Event_(uint);
|
|
event event_(uint);
|
|
|
|
function getOne() constant returns (uint)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
function GetOne() constant returns (uint)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
function setInt(uint number1, uint Number2)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
modifier CantDo() {
|
|
_;
|
|
}
|
|
|
|
modifier canDo() {
|
|
_;
|
|
}
|
|
}
|
|
|
|
contract Test {
|
|
|
|
}
|
|
|
|
contract T {
|
|
uint k = 1;
|
|
|
|
uint constant M = 1;
|
|
|
|
uint l = 1;
|
|
}
|
|
|