mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
243 B
Solidity
10 lines
243 B
Solidity
contract Test {
|
|
struct S { uint8 a; mapping(uint => uint) b; uint8 c; }
|
|
S s;
|
|
function f() public {
|
|
S memory x;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 4061: (104-114): Type struct Test.S is only valid in storage because it contains a (nested) mapping.
|