aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/printing/PlainPrinter.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-02-02 18:55:47 +0100
committerMartin Odersky <odersky@gmail.com>2014-02-02 18:56:47 +0100
commit4886d7cb538f9a073827c78671d1890be787c0a5 (patch)
tree654c02b484be36b885d27677f7ca9328912d5087 /src/dotty/tools/dotc/printing/PlainPrinter.scala
parent19c8cb1bca7a07395446a0cceaab137e5af2c8c5 (diff)
downloaddotty-4886d7cb538f9a073827c78671d1890be787c0a5.tar.gz
dotty-4886d7cb538f9a073827c78671d1890be787c0a5.tar.bz2
dotty-4886d7cb538f9a073827c78671d1890be787c0a5.zip
Relaxing check that implicits must have explicit return type
Now this is required only for members of a template. Local statements can still have implicits with no result type. (Maybe we need to get back on this). Also, changed Dotty itself and tests to adhere to the new restriction.
Diffstat (limited to 'src/dotty/tools/dotc/printing/PlainPrinter.scala')
-rw-r--r--src/dotty/tools/dotc/printing/PlainPrinter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/printing/PlainPrinter.scala b/src/dotty/tools/dotc/printing/PlainPrinter.scala
index a2e7b21e8..71c255c17 100644
--- a/src/dotty/tools/dotc/printing/PlainPrinter.scala
+++ b/src/dotty/tools/dotc/printing/PlainPrinter.scala
@@ -10,7 +10,7 @@ import java.lang.Integer.toOctalString
import scala.annotation.switch
class PlainPrinter(_ctx: Context) extends Printer {
- protected[this] implicit val ctx = _ctx
+ protected[this] implicit val ctx: Context = _ctx
protected def maxToTextRecursions = 100