aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/getter/complex_struct.sol
blob: 3fa8111cddf6b7c265c90b106f1f08923d84be00 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    struct Y {
        uint a;
        uint b;
    }
    mapping(uint256 => Y) public m;
}