diff dmd/TypeInfoTupleDeclaration.d @ 63:cab4c37afb89

A bunch of implementations
author korDen
date Mon, 23 Aug 2010 16:52:24 +0400
parents
children f708f0452e81
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/TypeInfoTupleDeclaration.d	Mon Aug 23 16:52:24 2010 +0400
@@ -0,0 +1,18 @@
+module dmd.TypeInfoTupleDeclaration;
+
+import dmd.Type;
+import dmd.TypeInfoDeclaration;
+import dmd.backend.dt_t;
+
+class TypeInfoTupleDeclaration : TypeInfoDeclaration
+{
+    this(Type tinfo)
+	{
+		super(tinfo, 0);
+	}
+
+    void toDt(dt_t **pdt)
+	{
+		assert(false);
+	}
+}
\ No newline at end of file