We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 816062f commit 47923f2Copy full SHA for 47923f2
project/Build.scala
@@ -1297,6 +1297,10 @@ object Build {
1297
.asScala3PresentationCompiler(NonBootstrapped)
1298
lazy val `scala3-presentation-compiler-bootstrapped` = project.in(file("presentation-compiler"))
1299
.asScala3PresentationCompiler(Bootstrapped)
1300
+ .settings(
1301
+ // Add `-Yno-flexible-types` flag for bootstrap, see comments for `bootstrappedDottyCompilerSettings`
1302
+ Compile / scalacOptions += "-Yno-flexible-types"
1303
+ )
1304
1305
def scala3PresentationCompiler(implicit mode: Mode): Project = mode match {
1306
case NonBootstrapped => `scala3-presentation-compiler`
0 commit comments