mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
258 B
Solidity
8 lines
258 B
Solidity
contract C {
|
|
function h ( bool flag ) public returns ( bool c ) {
|
|
mapping ( string => uint24 ) [ 1 ] memory val ;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 6651: (91-136): Data location must be "storage" for variable, but "memory" was given.
|