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

11 lines
213 B
Solidity

contract test {
uint constant x = 1;
function f() public {
assembly {
let y := x
}
}
}
// ----
// TypeError: (107-108): Constant variables not supported by inline assembly.