aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3136.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 17:39:12 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 17:39:12 +0200
commitf63589838344e91f84621162d9e0a4cc2c532949 (patch)
tree33431f7cbca4509b306d4c04e44c44591c2f9b0b /tests/untried/pos/t3136.scala
parentd7c44086cc34eee7991753fc2ea284bdefed9670 (diff)
downloaddotty-f63589838344e91f84621162d9e0a4cc2c532949.tar.gz
dotty-f63589838344e91f84621162d9e0a4cc2c532949.tar.bz2
dotty-f63589838344e91f84621162d9e0a4cc2c532949.zip
Add spaces around + in tests.
Diffstat (limited to 'tests/untried/pos/t3136.scala')
-rw-r--r--tests/untried/pos/t3136.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/untried/pos/t3136.scala b/tests/untried/pos/t3136.scala
index 33d42c2f3..239bd8f54 100644
--- a/tests/untried/pos/t3136.scala
+++ b/tests/untried/pos/t3136.scala
@@ -13,7 +13,7 @@ object NullaryMethodType {
object Test {
def TEST(tp: Type): String =
tp match {
- case PolyType(ps1, PolyType(ps2, res @ PolyType(a, b))) => "1"+tp // couldn't find a simpler version that still crashes
- case NullaryMethodType(meh) => "2"+meh
+ case PolyType(ps1, PolyType(ps2, res @ PolyType(a, b))) => "1" + tp // couldn't find a simpler version that still crashes
+ case NullaryMethodType(meh) => "2" + meh
}
}