Result unused: a few enhancements for PSI checks

Related to KT-15063, KT-24433
This commit is contained in:
Mikhail Glukhikh
2018-05-22 17:13:48 +03:00
parent b8375d4864
commit c95ed9fd20
2 changed files with 12 additions and 2 deletions
@@ -52,3 +52,10 @@ fun DbHandler.test() {
doStuff().await()
}
operator fun Deferred<Int>.unaryPlus() = this
operator fun Deferred<Int>.plus(arg: Int) = this
fun moreFalsePositives() {
+(async { 0 })
async { -1 } + 1
}