aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/address_payable_type_expression.sol
blob: 394b39c09734ef36c55710f202760e1a8f631528 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f() public pure {
        address payable;
    }
}
// ----
// ParserError: (67-68): Expected identifier but got ';'