[add edecls and empty regression tests
John Meacham <john@repetae.net>**20100727043849
 Ignore-this: 4645046f8bb835cbbeb5749d597f0b0a
] addfile ./regress/tests/1_typecheck/2_pass/edecls.hs
addfile ./regress/tests/1_typecheck/2_pass/empty.hs
hunk ./regress/tests/1_typecheck/2_pass/edecls.hs 1
+module Main where {
+
+f x = x;
+;
+;
+g y z = z;
+
+main = print (g (f False) (f True));
+}
hunk ./regress/tests/1_typecheck/2_pass/empty.hs 1
+module Main where
+
+data T = T1 Int Int Int
+       | T2 Float Float Float
+
+f (T1 {}) = True
+f (T2 {}) = False
+
+main = print (f (T1 1 2 3))