mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
1.1 KiB
Solidity
27 lines
1.1 KiB
Solidity
contract C {
|
|
address view m_a;
|
|
address pure m_b;
|
|
address view[] m_c;
|
|
mapping(uint => address view) m_d;
|
|
function f() public pure {
|
|
address view a;
|
|
address pure b;
|
|
a; b;
|
|
}
|
|
function g(address view) public pure {}
|
|
function h(address pure) public pure {}
|
|
function i() public pure returns (address view) {}
|
|
function j() public pure returns (address pure) {}
|
|
}
|
|
// ----
|
|
// TypeError 2311: (14-26): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (33-45): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (52-64): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (89-101): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (138-150): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (156-168): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (195-207): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (236-248): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (300-312): Address types can only be payable or non-payable.
|
|
// TypeError 2311: (352-364): Address types can only be payable or non-payable.
|