Skip to content

Commit

Permalink
skip test case to unblock 2.13.8-compatible release
Browse files Browse the repository at this point in the history
> --- obtained
> +++ expected
> -    val poc = new PkgObjClass
> +    val poc: PkgObjClass = new PkgObjClass
  • Loading branch information
bjaglin committed Nov 12, 2021
1 parent 2d33f31 commit db86d9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ object BetterRscCompat_Test {
object PackageObjects {
val o2c = O1.foo

val poc = new PkgObjClass
// Commented out because of a regression with scalac 2.13.8, see https://github.com/scalacenter/scalafix/pull/1493
//val poc = new PkgObjClass
}

object PolymorphicDefaultParams {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ object BetterRscCompat_Test {
object PackageObjects {
val o2c: O2.C2 = O1.foo

val poc: PkgObjClass = new PkgObjClass
// Commented out because of a regression with scalac 2.13.8, see https://github.com/scalacenter/scalafix/pull/1493
//val poc: PkgObjClass = new PkgObjClass
}

object PolymorphicDefaultParams {
Expand Down

0 comments on commit db86d9a

Please sign in to comment.