solidity/test/libsolidity/syntaxTests/dataLocations/data_location_in_function_type.sol

5 lines
135 B
Solidity
Raw Normal View History

2018-07-26 04:06:56 +00:00
library L {
struct Nested { uint y; }
function c(function(Nested memory) external returns (uint)[] storage) external pure {}
}