solidity/test/libsolidity/syntaxTests/parsing/address_payable_type_expression.sol

8 lines
142 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
address payable;
}
}
// ----
// ParserError: (67-68): Expected identifier but got ';'