[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / interpreter / test / static / s111.hs
diff --git a/ghc/interpreter/test/static/s111.hs b/ghc/interpreter/test/static/s111.hs
new file mode 100644 (file)
index 0000000..21cc9d9
--- /dev/null
@@ -0,0 +1,6 @@
+--!!! No constructor has all of the fields specified
+data T = T {x,y::Int}
+data U = U {z::Int}
+
+f a b c = T{x=a,y=b,z=c}
+