blob: f6423685cbdd9870d797420d5883d0cb5c4e4306 [file]
// ORIGINAL: /compiler/testData/diagnostics/testsWithStdLib/coroutines/suspendTest.fir.kt
// WITH_STDLIB
// ALLOW_KOTLIN_PACKAGE
// 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
suspend fun test() {}
}
@Test
suspend fun test() {}
fun box() = "OK".also { test() }