solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/025_comparison_of_mapping_types.sol

10 lines
299 B
Solidity

contract C {
mapping(uint => uint) x;
function f() public returns (bool ret) {
mapping(uint => uint) storage y = x;
return x == y;
}
}
// ----
// TypeError 2271: (147-153): Operator == not compatible with types mapping(uint256 => uint256) and mapping(uint256 => uint256)