From 55ebf641a93c61d072dcd6f7a0f2851be5ea5ada Mon Sep 17 00:00:00 2001 From: paltherr Date: Mon, 7 Jul 2003 09:17:29 +0000 Subject: - Improved debug message --- sources/scalac/symtab/Type.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sources/scalac') diff --git a/sources/scalac/symtab/Type.java b/sources/scalac/symtab/Type.java index 33d509c55c..430bcaa5e9 100644 --- a/sources/scalac/symtab/Type.java +++ b/sources/scalac/symtab/Type.java @@ -1137,7 +1137,7 @@ public class Type implements Modifiers, Kinds, TypeTags { */ public Type subst(Symbol[] from, Type[] to) { assert from.length == to.length - : this + ": " + from.length + " != " + to.length; + : this + ": " + Debug.show(from) + " <> " + ArrayApply.toString(to); if (from.length != 0) return new SubstTypeMap(from, to).apply(this); else return this; -- cgit v1.2.3