aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/typer/Applications.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2017-02-21 17:54:12 +0100
committerMartin Odersky <odersky@gmail.com>2017-02-21 17:54:12 +0100
commit47b6c6b204ca6b577e18fd82ca8af0e5710771b1 (patch)
treef70b9dc88d5bb3da7f6997c1b682c6502adc0204 /compiler/src/dotty/tools/dotc/typer/Applications.scala
parent6c164a5d906c657baa045c1d564c63273eb65f31 (diff)
downloaddotty-47b6c6b204ca6b577e18fd82ca8af0e5710771b1.tar.gz
dotty-47b6c6b204ca6b577e18fd82ca8af0e5710771b1.tar.bz2
dotty-47b6c6b204ca6b577e18fd82ca8af0e5710771b1.zip
Drop stray println
Diffstat (limited to 'compiler/src/dotty/tools/dotc/typer/Applications.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/typer/Applications.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/typer/Applications.scala b/compiler/src/dotty/tools/dotc/typer/Applications.scala
index b2c4e2f45..284b9e21e 100644
--- a/compiler/src/dotty/tools/dotc/typer/Applications.scala
+++ b/compiler/src/dotty/tools/dotc/typer/Applications.scala
@@ -1374,7 +1374,7 @@ trait Applications extends Compatibility { self: Typer with Dynamic =>
if (isUniform(ps)(ctx.typeComparer.isSameTypeWhenFrozen(_, _))) ps.head
else WildcardType)
val commonFormal = defn.FunctionOf(commonParamTypes, WildcardType)
- println(i"pretype arg $arg with expected type $commonFormal")
+ overload.println(i"pretype arg $arg with expected type $commonFormal")
pt.typedArg(arg, commonFormal)
}
}