Add tests to check that chain is not build in some hard cases

This commit is contained in:
Vitaliy.Bibaev
2017-10-26 15:37:27 +03:00
committed by Yan Zhulanow
parent 6ce6301613
commit 70f4933d5b
15 changed files with 149 additions and 3 deletions
@@ -0,0 +1,5 @@
import java.util.stream.Stream
fun main(args: Array<String>) {
<caret> val a = Runnable { val c = Stream.of(1, 2).count() }
}