solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/206_storage_location_local_variables.sol
Daniel Kirchner 46d6454b1f Update tests.
2018-07-10 11:38:32 +02:00

10 lines
146 B
Solidity

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