mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
162 B
Solidity
13 lines
162 B
Solidity
contract test {
|
|
modifier m {
|
|
uint a = 1;
|
|
assembly {
|
|
a := 2
|
|
}
|
|
_;
|
|
}
|
|
function f() public m {
|
|
}
|
|
}
|
|
// ----
|