solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/378_inline_assembly_storage_in_modifiers.sol
2018-08-06 12:03:00 +01:00

14 lines
282 B
Solidity

contract test {
uint x = 1;
modifier m {
assembly {
x := 2
}
_;
}
function f() public m {
}
}
// ----
// TypeError: (80-81): Only local variables are supported. To access storage variables, use the _slot and _offset suffixes.