diff tests/parser/float_1.d @ 111:c658172ca8a0

Parsing basic integers and floats.
author Anders Johnsen <skabet@gmail.com>
date Sun, 25 May 2008 15:42:44 +0200
parents
children c3b24e7e8cf8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/parser/float_1.d	Sun May 25 15:42:44 2008 +0200
@@ -0,0 +1,8 @@
+
+
+void main()
+{
+    float f1  = 4_.5_e5+4;
+    float f2  = 4._5_e+344;
+    float f3  = 4.__5_e-_2;
+}