solidity/test/libsolidity/syntaxTests/indexing/function_type.sol

8 lines
155 B
Solidity
Raw Normal View History

contract C {
function f() public {
f[0];
}
}
// ----
// TypeError: (41-42): Indexed expression has to be a type, mapping or array (is function ())