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.
18 lines
437 B
18 lines
437 B
struct my_struct {
|
|
uint[][] a; // works fine
|
|
uint[][3] b; // works fine
|
|
uint[3][] c; // fails
|
|
uint[3][3] d; // fails
|
|
uint[2**20] e; // works fine
|
|
}
|
|
contract BaseContract{
|
|
struct my_struct_2 {
|
|
uint[][] f; // works fine
|
|
uint[][3] g; // works fine
|
|
uint[3][] h; // works fine
|
|
uint[3][3] i; // works fine
|
|
uint[2**20] j; // works fine
|
|
}
|
|
|
|
uint[3][] k; // works fine
|
|
}
|
|
|