Files
kotlin-fork/idea/testData/intentions/importMember/TopLevelFun.kt
T
2017-03-23 15:48:33 +01:00

8 lines
232 B
Kotlin
Vendored

// INTENTION_TEXT: "Add import for 'kotlin.test.assertFailsWith'"
// RUNTIME_WITH_KOTLIN_TEST
fun foo() {
kotlin.test.<caret>assertFailsWith<Exception>("", {})
kotlin.test.assertFailsWith(RuntimeException::class, "", {})
}