Redundant suspend modifier: do not report when the function has 'actual' modifier

#KT-37746 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-04-12 17:24:02 +09:00
committed by klunnii
parent 188bcf0e7b
commit 08588001be
3 changed files with 12 additions and 1 deletions
@@ -0,0 +1,6 @@
// PROBLEM: none
// DISABLE-ERRORS
expect suspend fun a()
actual <caret>suspend fun a() {
}