summaryrefslogtreecommitdiff
path: root/test/files/neg/t10097.check
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2016-12-09 09:53:30 -0800
committerSom Snytt <som.snytt@gmail.com>2016-12-14 20:14:45 -0800
commitb775f4f58098d7f79155b3fe00c0bdb0eabf3d84 (patch)
treea4ba8d61638bbdd9a42c7a6db7a09df9ac0777d0 /test/files/neg/t10097.check
parent32a05ddfef09ac27904d9771ddf0ed8b4380e94a (diff)
downloadscala-b775f4f58098d7f79155b3fe00c0bdb0eabf3d84.tar.gz
scala-b775f4f58098d7f79155b3fe00c0bdb0eabf3d84.tar.bz2
scala-b775f4f58098d7f79155b3fe00c0bdb0eabf3d84.zip
SI-10097 Adapt unless -Xsource:2.13
For 2.12 migration, insert missing case class param section, strip caseaccessor from implicit paramsection, and deprecate the adaptation.
Diffstat (limited to 'test/files/neg/t10097.check')
-rw-r--r--test/files/neg/t10097.check4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/t10097.check b/test/files/neg/t10097.check
index dc81bae0fa..1f70546b57 100644
--- a/test/files/neg/t10097.check
+++ b/test/files/neg/t10097.check
@@ -1,9 +1,9 @@
t10097.scala:2: error: case classes must have a non-implicit parameter list; try 'case class C()(...)'
case class C(implicit val c: Int)
- ^
+ ^
t10097.scala:4: error: case classes must have a non-implicit parameter list; try 'case class D()(...)(...)'
case class D(implicit c: Int)(s: String)
- ^
+ ^
t10097.scala:4: error: an implicit parameter section must be last
case class D(implicit c: Int)(s: String)
^