aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/struct_definition.sol
blob: 0c859e5d04302a540bfd97a7c2308c0467e55562 (plain) (tree)
1
2
3
4
5
6
7






                         
contract test {
    uint256 stateVar;
    struct MyStructName {
        address addr;
        uint256 count;
    }
}