solidity/test/libsolidity/syntaxTests/structs/member_type_func.sol

8 lines
195 B
Solidity
Raw Normal View History

contract C {
function f() public {}
struct S {f x;}
function g(function(S memory) external) public {}
}
// ----
// TypeError 5172: (50-51): Name has to refer to a struct, enum or contract.