changeset 467:5d6bb14f6415

fixed assertion typo
author thomask
date Sat, 23 Apr 2005 05:45:45 +0000
parents fb12b778ea27
children 9db08558fa6f
files run/typeid_79.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/run/typeid_79.d	Thu Apr 21 05:34:31 2005 +0000
+++ b/run/typeid_79.d	Sat Apr 23 05:45:45 2005 +0000
@@ -14,6 +14,6 @@
 	TypeInfo ti = typeid(MyUnion[]);
 	assert(!(ti is null));
 	assert(ti.tsize==(MyUnion[]).sizeof);
-	assert(ti.toString()=="dstress.run.typeid_79.MyUnion[]");
+	assert(ti.toString()=="dstress.run.typeid_78.MyUnion[]");
 	return 0;
 }