solidity/test/libsolidity/syntaxTests/indexing/function_type.sol
2018-07-24 20:26:36 +01:00

8 lines
155 B
Solidity

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