aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_decimal.sol
diff options
context:
space:
mode:
authorChristian Parpart <christian@parpart.family>2018-08-03 22:13:52 +0800
committerChristian Parpart <christian@ethereum.org>2018-08-08 19:38:46 +0800
commitb9222808f61e00833f8c11cd196cafb50ec9e1b9 (patch)
tree93f7552a8effdb5e3ab3a240f4337edd3f8f249c /test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_decimal.sol
parent09a36cba0223c16248335703412cee019c7aa59f (diff)
downloaddexon-solidity-b9222808f61e00833f8c11cd196cafb50ec9e1b9.tar
dexon-solidity-b9222808f61e00833f8c11cd196cafb50ec9e1b9.tar.gz
dexon-solidity-b9222808f61e00833f8c11cd196cafb50ec9e1b9.tar.bz2
dexon-solidity-b9222808f61e00833f8c11cd196cafb50ec9e1b9.tar.lz
dexon-solidity-b9222808f61e00833f8c11cd196cafb50ec9e1b9.tar.xz
dexon-solidity-b9222808f61e00833f8c11cd196cafb50ec9e1b9.tar.zst
dexon-solidity-b9222808f61e00833f8c11cd196cafb50ec9e1b9.zip
Cleanup & polish numbers-with-underscores parsing, also improving tests.
Diffstat (limited to 'test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_decimal.sol')
-rw-r--r--test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_decimal.sol13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_decimal.sol b/test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_decimal.sol
new file mode 100644
index 00000000..d4d3299f
--- /dev/null
+++ b/test/libsolidity/syntaxTests/parsing/lexer_numbers_with_underscores_decimal.sol
@@ -0,0 +1,13 @@
+contract C {
+ function f() public pure {
+ uint d1 = 654_321;
+ uint d2 = 54_321;
+ uint d3 = 4_321;
+ uint d4 = 5_43_21;
+ uint d5 = 1_2e10;
+ uint d6 = 12e1_0;
+
+ d1; d2; d3; d4; d5; d6;
+ }
+}
+// ----