aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/483_modifiers_access_storage_pointer.sol
blob: be1920e94825ab873b80b0edcdbdc9b4812eb95c (plain) (blame)
1
2
3
4
5
6
7
contract C {
    struct S { uint a; }
    modifier m(S storage x) {
        x;
        _;
    }
}