solidity/test/libsolidity/syntaxTests/getter/complex_struct.sol
2018-11-28 14:11:51 +01:00

8 lines
104 B
Solidity

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