2020-04-14 08:52:27 +00:00
|
|
|
contract C {
|
|
|
|
function f() public pure {
|
|
|
|
assembly {
|
|
|
|
setimmutable("abc", 0)
|
|
|
|
loadimmutable("abc")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// DeclarationError 4619: (63-75): Function not found.
|
|
|
|
// DeclarationError 4619: (92-105): Function not found.
|