diff test/typeinfo5.d @ 71:53d3086b5ad3 trunk

[svn r75] Fixed the init member in custom enum typeinfo. I don't see any way this could actually need emmision though :/
author lindquist
date Sun, 28 Oct 2007 19:48:57 +0100
parents 2c3cd3596187
children
line wrap: on
line diff
--- a/test/typeinfo5.d	Sun Oct 28 19:33:50 2007 +0100
+++ b/test/typeinfo5.d	Sun Oct 28 19:48:57 2007 +0100
@@ -7,4 +7,5 @@
     }
     auto ti = typeid(E);
     assert(ti.next() is typeid(uint));
+    assert(ti.init is null);
 }