aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/address_payable_conversion.sol
blob: bf073a52a865a6fddbeb30dc2602e4a91c56b419 (plain) (tree)
1
2
3
4
5
6
7






                                                       
contract C {
    function f() public pure {
        address payable a = address payable(this);
    }
}
// ----
// ParserError: (80-87): Expected ';' but got 'payable'