blob: af133929545a47795007bf604748c997a61cccd1 (
plain) (
blame)
1
2
3
4
5
6
|
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) {}
}
|