summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sources/scalac/symtab/Type.java2
1 files changed, 1 insertions, 1 deletions
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;