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

7 lines
88 B
Solidity

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