Fixes #5051 (introduced in #4684), effectively allowing underscores in address literals.

This commit is contained in:
Christian Parpart
2018-10-02 15:37:15 +02:00
committed by Christian Parpart
parent 7609710d4f
commit 9fb835b710
5 changed files with 14 additions and 6 deletions
@@ -4,5 +4,6 @@ contract C {
a = address(1);
address b = 0x0123456789012345678901234567890123456789;
b = 0x9876543210987654321098765432109876543210;
b = 0x9876_5432_1098_7654_3210_9876_5432_1098_7654_3210;
}
}