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β