solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/constant_assignment.sol
2022-04-01 23:41:18 -05:00

11 lines
205 B
Solidity

contract test {
uint constant x = 1;
function f() public {
assembly {
x := 2
}
}
}
// ----
// TypeError 6252: (98-99='x'): Constant variables cannot be assigned to.