# HG changeset patch # User thomask # Date 1114235145 0 # Node ID 5d6bb14f6415a250ca1153ba364df27252ceb17d # Parent fb12b778ea27d536f3c3aae577c3c8b0b49ccfad fixed assertion typo diff -r fb12b778ea27 -r 5d6bb14f6415 run/typeid_79.d --- 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; }