There seems to be a bug when a stream is used in a lambda expression that is fed to some intermediate operation. For example: ```java objects.stream().forEach(o1 -> objects.stream /* ... */).count(); ``` The embedded stream doesn't even seem to have a creation instruction in the IR.