If coroutine launched with start=LAZY and never ca...
# coroutines
p
If coroutine launched with start=LAZY and never called start can it be just GCed or need explicitly be cancelled?
d
You should typically cancel it. Otherwise, the parent coroutine will wait for it, so this code hangs:
Copy code
coroutineScope {
        launch(start = CoroutineStart.LAZY) {
        }
    }
🙏 1