Forbid suspend functions annotated with @kotlin.test.Test

#KT-26200 Fixed
This commit is contained in:
Denis Zharkov
2018-08-24 15:19:42 +03:00
parent a18770fbbb
commit b9f141d4aa
7 changed files with 57 additions and 8 deletions
@@ -0,0 +1,20 @@
// SKIP_TXT
// FILE: test.kt
package kotlin.test
annotation class IrrelevantClass
public typealias Test = IrrelevantClass
// FILE: main.kt
import kotlin.test.Test
class A {
@Test
<!UNSUPPORTED!>suspend<!> fun test() {}
}
@Test
<!UNSUPPORTED!>suspend<!> fun test() {}