Disable "Add labeled return" for suspend lambdas #KT-23126 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-03-06 05:18:25 +03:00
committed by Mikhail Glukhikh
parent 5d1f5d9bca
commit e3a69d118f
3 changed files with 16 additions and 0 deletions
@@ -0,0 +1,8 @@
// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo() {
suspend {
<caret>true
}
}