solidity/test/libsolidity/syntaxTests/inlineAssembly/immutables.sol
2020-05-04 15:00:50 +02:00

12 lines
234 B
Solidity

contract C {
function f() public pure {
assembly {
setimmutable("abc", 0)
loadimmutable("abc")
}
}
}
// ----
// DeclarationError: (63-75): Function not found.
// DeclarationError: (92-105): Function not found.