Files
2023-08-08 18:10:19 +02:00

7 lines
262 B
Kotlin

package kotlin
// This file should be excluded from tests using StdLib, as these methods conflict with corresponding methods from kotlin.test
// see StdLibTestBase.removeAdHocAssertions
fun fail(message: String? = null): Nothing {
throw Throwable(message)
}