aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/location_specifiers_for_locals.sol
blob: 38de7b1c620614b8e473fc4dfd60d442a1e84814 (plain) (tree)
1
2
3
4
5
6
7
8
9
              


                               
                        
             


       
contract Foo {
    uint[] m_x;
    function f() public view {
        uint[] storage x = m_x;
        uint[] memory y;
        x; y;
    }
}
// ----