Static Analyzer for Solidity
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.
 
 
 
 
slither/tests/detectors/naming-convention/0.4.25/naming_convention_ignore.sol

22 lines
361 B

//pragma solidity ^0.4.24;
// slither-disable-next-line all
contract naming {
// slither-disable-next-line naming-convention
struct test {
uint a;
}
// slither-disable-next-line pragma,all
struct test2 {
uint a;
}
// slither-disable-next-line wrong-naming-convention
struct test3 {
uint a;
}
}