31fa6a24
46d6454b
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; } } // ----