solidity/test/libsolidity/syntaxTests/getter/simple_struct.sol

7 lines
88 B
Solidity
Raw Normal View History

2018-11-28 11:18:32 +00:00
contract C {
struct Y {
uint b;
}
mapping(uint256 => Y) public m;
}