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