Please reference this Tapir schema:
I receive this error: Maximal number of successive inlines (32) exceeded
This project, though, works just fine:
Setting scalacOptions to “-Xmax-inlines=128” does not work. Thoughts? ![]()
Please reference this Tapir schema:
I receive this error: Maximal number of successive inlines (32) exceeded
This project, though, works just fine:
Setting scalacOptions to “-Xmax-inlines=128” does not work. Thoughts? ![]()
That’s what I love about asking questions on a forum — because once you do, you’ll fix the issue. And here is the sbt fix:
scalacOptions ++= Seq(
"-Wunused:all",
"-Xmax-inlines",
"128"
)
I thought it was: “-Xmax-inlines=128”