solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/206_storage_location_local_variables.sol

10 lines
146 B
Solidity
Raw Normal View History

contract C {
2018-07-03 13:10:39 +00:00
uint[] m_x;
function f() public view {
uint[] storage x = m_x;
uint[] memory y;
2018-07-03 13:10:39 +00:00
x;y;
}
}
// ----