diff tests/sema/deref_2.d @ 116:0cd8d6ab3f89

Add in the types for float and co.
author Anders Halager <halager@gmail.com>
date Sun, 25 May 2008 18:19:09 +0200
parents 189c049cbfcc
children
line wrap: on
line diff
--- a/tests/sema/deref_2.d	Sun May 25 15:49:25 2008 +0200
+++ b/tests/sema/deref_2.d	Sun May 25 18:19:09 2008 +0200
@@ -1,7 +1,7 @@
 int main()
 {
-    int *a;
-    int *b;
+    int* a;
+    int* b;
     a = b;
     *a = 1;