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.
22 lines
361 B
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;
|
|
}
|
|
|
|
}
|
|
|