mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
136 B
Solidity
7 lines
136 B
Solidity
contract C {
|
|
mapping (uint => uint) m;
|
|
uint a = m(1000);
|
|
}
|
|
// ----
|
|
// TypeError 5704: (56-63): This expression is not callable.
|