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

11 lines
207 B
Solidity

contract test {
uint constant x = 1;
function f() public {
assembly {
x := 2
}
}
}
// ----
// TypeError: (98-99): Constant variables not supported by inline assembly.