solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/constant_access.sol

11 lines
213 B
Solidity
Raw Normal View History

contract test {
uint constant x = 1;
function f() public {
assembly {
let y := x
}
}
}
// ----
2018-08-06 10:42:39 +00:00
// TypeError: (107-108): Constant variables not supported by inline assembly.