Do not report "redundant suspend" on override / open #KT-21938 Fixed

This commit is contained in:
Mikhail Glukhikh
2017-12-21 18:00:42 +03:00
parent 276a6acc3e
commit fc93e7a727
4 changed files with 43 additions and 0 deletions
@@ -0,0 +1,10 @@
// PROBLEM: none
interface I {
suspend fun f()
}
class C : I {
override <caret>suspend fun f() {
}
}