aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/mapping_in_struct.sol
blob: 980d57503d8ecf119055e855a1667524f9e9fd09 (plain) (blame)
1
2
3
4
5
6
7
contract test {
    struct test_struct {
        address addr;
        uint256 count;
        mapping(bytes32 => test_struct) self_reference;
    }
}