Tests for literal denominations with non-integer literals

This commit is contained in:
Kamil Śliwak
2023-04-07 14:48:13 +02:00
parent 8dd6f77692
commit 5687f6e934
4 changed files with 30 additions and 0 deletions
@@ -0,0 +1,5 @@
contract C {
address a = 0x11111122222333334444455555666667777788888 wei;
}
// ----
// TypeError 5145: (26-73): Hexadecimal numbers cannot be used with unit denominations. You can use an expression of the form "0x1234 * 1 day" instead.
@@ -0,0 +1,5 @@
contract C {
bool constant x = true ether;
}
// ----
// ParserError 2314: (37-42): Expected ';' but got 'ether'
@@ -0,0 +1,5 @@
contract C {
string s = "abc" ether;
}
// ----
// ParserError 2314: (31-36): Expected ';' but got 'ether'