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

9 lines
108 B
Solidity
Raw Normal View History

library L
{
struct Nested
{
uint y;
}
function f(function(Nested memory) external) external pure {}
}