You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to generate the doc for the following sample:
```scala mdoc
lazy val valueOpt: Option[Int] = ???
```
I get the following error:
an implementation is missing
lazy val valueOpt: Option[Int] = ???
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
scala.NotImplementedError: an implementation is missing
at scala.Predef$.$qmark$qmark$qmark(Predef.scala:288)
...
I would expect this to compile as it works with tut see this file (line 237).
The text was updated successfully, but these errors were encountered:
Thank you for reporting! It's correct that lazy vals are currently eagerly evaluated. We can change the instrumentation to not evaluate lazy vals by changing the code somewhere around here
When I try to generate the doc for the following sample:
I get the following error:
I would expect this to compile as it works with
tut
see this file (line 237).The text was updated successfully, but these errors were encountered: