aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/ast
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-12-13 15:38:56 +0100
committerMartin Odersky <odersky@gmail.com>2016-12-17 18:34:27 +0100
commitdf4653c729a374561e591328f43255bc062b81a4 (patch)
treeb8c4414af7846401032d1033c9a4dadceb03ae39 /compiler/src/dotty/tools/dotc/ast
parent6eb1a72bce041d4fd8519713031894dac3192025 (diff)
downloaddotty-df4653c729a374561e591328f43255bc062b81a4.tar.gz
dotty-df4653c729a374561e591328f43255bc062b81a4.tar.bz2
dotty-df4653c729a374561e591328f43255bc062b81a4.zip
Fix toString in ImplicitFunction tree
Diffstat (limited to 'compiler/src/dotty/tools/dotc/ast')
-rw-r--r--compiler/src/dotty/tools/dotc/ast/untpd.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/ast/untpd.scala b/compiler/src/dotty/tools/dotc/ast/untpd.scala
index 77755da81..f3ffce8f8 100644
--- a/compiler/src/dotty/tools/dotc/ast/untpd.scala
+++ b/compiler/src/dotty/tools/dotc/ast/untpd.scala
@@ -56,7 +56,7 @@ object untpd extends Trees.Instance[Untyped] with UntypedTreeInfo {
/** An implicit function type */
class ImplicitFunction(args: List[Tree], body: Tree) extends Function(args, body) {
- override def toString = s"ImplicitFunction($args, $body"
+ override def toString = s"ImplicitFunction($args, $body)"
}
/** A function created from a wildcard expression