solidity/test/libsolidity/syntaxTests/parsing/address_payable_type_expression.sol
2018-09-11 14:52:23 +02:00

8 lines
142 B
Solidity

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