```scala class Example: lazy val someComputation: Int = ??? val notLazy: Int = someComputation + 1 ``` It'd be nice to warn here since the "lazy" val will always be forced by the non-lazy one.
It'd be nice to warn here since the "lazy" val will always be forced by the non-lazy one.