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 1d8b789 commit 3c46da8Copy full SHA for 3c46da8
tests/run-with-compiler-custom-args/staged-streams_1.scala
@@ -389,12 +389,15 @@ object Test {
389
* {{{
390
* /* initialization for stream 1 */
391
*
392
- * var curr = null.asInstanceOf[Int] // keeps each element from reified stream
+ * var curr = 0.asInstanceOf[Int] // keeps each element from reified stream
393
* var nadv: Unit => Unit = (_) => () // keeps the advance for each nested level
394
395
- * def adv: Unit => Unit = /* Linearization of stream1 - updates curr from stream1 */
+ * def adv: Unit => Unit = {
396
+ * /* Linearization of stream1 - updates curr from stream1 */
397
+ * curr = ...
398
+ * }
399
* nadv = adv
- * adv()
400
+ * nadv()
401
402
* /* initialization for stream 2 */
403
0 commit comments