2018-03-16 11:45:12 +00:00
|
|
|
contract B {
|
|
|
|
function f(uint8 a) mod1(a, true) mod2(r) pure public returns (bytes7 r) { }
|
|
|
|
modifier mod1(uint a, bool b) { if (b) _; }
|
|
|
|
modifier mod2(bytes7 a) { while (a == "1234567") _; }
|
|
|
|
}
|
2021-03-12 23:02:36 +00:00
|
|
|
// ----
|