aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/mapping_to_mapping_in_struct.sol
blob: c06220b726afbbb4dfeac5d38c98dfaf2bb3dc9b (plain) (blame)
1
2
3
4
5
6
contract test {
    struct test_struct {
        address addr;
        mapping (uint64 => mapping (bytes32 => uint)) complex_mapping;
    }
}