solidity/test/libsolidity/syntaxTests/dataLocations/data_location_in_function_type.sol
2018-08-14 18:53:06 +02:00

5 lines
135 B
Solidity

library L {
struct Nested { uint y; }
function c(function(Nested memory) external returns (uint)[] storage) external pure {}
}