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

7 lines
104 B
Solidity
Raw Normal View History

2018-03-16 10:20:06 +00:00
contract C {
2018-03-16 10:33:05 +00:00
function f() pure public {
2018-03-16 10:20:06 +00:00
function(uint) returns (uint) x;
2018-03-16 10:33:05 +00:00
x;
2018-03-16 10:20:06 +00:00
}
}