drop hexadecimal double literals

This commit is contained in:
Dmitry Jemerov
2015-10-09 17:39:04 +02:00
parent ead19076d7
commit 2cab34bb3f
4 changed files with 342 additions and 387 deletions
@@ -110,10 +110,8 @@ public class JetTypeCheckerTest extends JetLiteFixture {
assertType("1.0", builtIns.getDoubleType());
assertType("1.0.toDouble()", builtIns.getDoubleType());
assertType("0x1.fffffffffffffp1023", builtIns.getDoubleType());
assertType("1.0.toFloat()", builtIns.getFloatType());
assertType("0x1.fffffffffffffp1023.toFloat()", builtIns.getFloatType());
assertType("true", builtIns.getBooleanType());
assertType("false", builtIns.getBooleanType());