diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-05-03 03:42:26 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-05-04 05:10:51 +0800 |
commit | ed9f80690bde53e56c6ef5cb046fb20713f3f780 (patch) | |
tree | ee51257c9b6182dd7996010c36df5725b976e44c /test/libsolidity/syntaxTests/parsing/payable_accessor.sol | |
parent | 73c99d15cdf5ef0589096d6d42025a21502fc8d9 (diff) | |
download | dexon-solidity-ed9f80690bde53e56c6ef5cb046fb20713f3f780.tar.gz dexon-solidity-ed9f80690bde53e56c6ef5cb046fb20713f3f780.tar.zst dexon-solidity-ed9f80690bde53e56c6ef5cb046fb20713f3f780.zip |
Simplify expectIdentifierToken by using expectToken
Diffstat (limited to 'test/libsolidity/syntaxTests/parsing/payable_accessor.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/parsing/payable_accessor.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/syntaxTests/parsing/payable_accessor.sol b/test/libsolidity/syntaxTests/parsing/payable_accessor.sol index a73108ad..44b04afd 100644 --- a/test/libsolidity/syntaxTests/parsing/payable_accessor.sol +++ b/test/libsolidity/syntaxTests/parsing/payable_accessor.sol @@ -2,4 +2,4 @@ contract test { uint payable x; } // ---- -// ParserError: (22-22): Expected identifier, got 'Payable' +// ParserError: (22-22): Expected token Identifier got 'Payable' |