mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
299 B
Solidity
19 lines
299 B
Solidity
contract C {
|
|
uint256 public a;
|
|
modifier mod(uint256 x) {
|
|
a += x;
|
|
_;
|
|
}
|
|
|
|
function f(uint256 x) public mod(2) mod(5) mod(x) returns (uint256) {
|
|
return a;
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// compileToEwasm: also
|
|
// ----
|
|
// f(uint256): 3 -> 10
|
|
// a() -> 10
|