mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
207 B
Solidity
7 lines
207 B
Solidity
|
error MyError(mapping(uint => uint));
|
||
|
contract C {
|
||
|
error MyError2(mapping(uint => uint));
|
||
|
}
|
||
|
// ----
|
||
|
// TypeError 3448: (14-35): Type containing a (nested) mapping is not allowed as error parameter type.
|