diff dmd/UnionDeclaration.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 427f8aa74d28 f2413c9183d1
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/UnionDeclaration.d	Sat Oct 24 08:42:06 2009 +0400
@@ -0,0 +1,27 @@
+module dmd.UnionDeclaration;
+
+import dmd.StructDeclaration;
+import dmd.Loc;
+import dmd.Identifier;
+import dmd.Dsymbol;
+
+class UnionDeclaration : StructDeclaration
+{
+    this(Loc loc, Identifier id)
+	{
+		assert(false);
+		super(loc, id);
+	}
+	
+    Dsymbol syntaxCopy(Dsymbol s)
+	{
+		assert(false);
+	}
+	
+    string kind()
+	{
+		assert(false);
+	}
+
+    UnionDeclaration isUnionDeclaration() { return this; }
+}
\ No newline at end of file