mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Remove low-level log functions.
This commit is contained in:
+4
-4
@@ -1,13 +1,13 @@
|
||||
contract C {
|
||||
function f() public pure {
|
||||
(bool a,) = address(this).call(abi.encode(address(this).delegatecall, super));
|
||||
(a,) = address(this).delegatecall(abi.encode(log0, tx, mulmod));
|
||||
(a,) = address(this).delegatecall(abi.encode(block, tx, mulmod));
|
||||
a;
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// TypeError 2056: (94-120): This type cannot be encoded.
|
||||
// TypeError 2056: (122-127): This type cannot be encoded.
|
||||
// TypeError 2056: (184-188): This type cannot be encoded.
|
||||
// TypeError 2056: (190-192): This type cannot be encoded.
|
||||
// TypeError 2056: (194-200): This type cannot be encoded.
|
||||
// TypeError 2056: (184-189): This type cannot be encoded.
|
||||
// TypeError 2056: (191-193): This type cannot be encoded.
|
||||
// TypeError 2056: (195-201): This type cannot be encoded.
|
||||
|
||||
Reference in New Issue
Block a user