solidity/test/libsolidity/syntaxTests/getter/simple_struct.sol
2021-04-20 17:38:29 +02:00

8 lines
96 B
Solidity

contract C {
struct Y {
uint b;
}
mapping(uint256 => Y) public m;
}
// ----