https://github.com/da-liii/bug_12229
https://github.com/da-liii/bug_12229
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/da-liii/bug_12229
- Owner: da-liii
- Created: 2020-11-17T09:20:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-17T13:26:26.000Z (over 4 years ago)
- Last Synced: 2024-04-14T15:24:12.988Z (about 1 year ago)
- Language: Scala
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# See https://github.com/scala/bug/issues/12229
```
# SUCCESS
sbt 'set scalaVersion := "2.12.12"' compile# FAILED
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:l:method")' compile# FAILED
sbt 'set scalaVersion := "2.12.11"' 'set scalacOptions in ThisBuild ++= Seq("-opt:l:method")' compile# FAILED
sbt 'set scalaVersion := "2.12.0"' 'set scalacOptions in ThisBuild ++= Seq("-opt:l:method")' compile# SUCCESS
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:unreachable-code")' compile
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:simplify-jumps")' compile
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:compact-locals")' compile
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:copy-propagation")' compile
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:redundant-casts")' compile
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:box-unbox")' compile
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:nullness-tracking")' compile# FAILED
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:closure-invocations")' compile# SUCCESS
sbt 'set scalaVersion := "2.12.12"' 'set scalacOptions in ThisBuild ++= Seq("-opt:l:method", "-opt:-closure-invocations")' compile
```