10 lines
232 B
Plaintext
Vendored
10 lines
232 B
Plaintext
Vendored
import kotlin.test.assertFailsWith
|
|
|
|
// INTENTION_TEXT: "Add import for 'kotlin.test.assertFailsWith'"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo() {
|
|
<caret>assertFailsWith<Exception>("", {})
|
|
assertFailsWith(RuntimeException::class, "", {})
|
|
}
|