2018-12-07 17:20:35 +00:00
|
|
|
contract C {
|
|
|
|
modifier m1(uint[] storage a) { _; }
|
|
|
|
modifier m2(uint[] storage a) { _; }
|
|
|
|
uint[] s;
|
|
|
|
function f() m1(b = s) m2(b) internal view returns (uint[] storage b) {}
|
2021-03-12 23:02:36 +00:00
|
|
|
}
|
2021-03-12 23:02:36 +00:00
|
|
|
// ----
|