Files
kotlin-fork/idea/testData/intentions/convertIfWithThrowToAssert/assertOverloaded2.kt.after
T

8 lines
120 B
Plaintext
Vendored

// WITH_RUNTIME
package foo.kotlin
fun foo() {
kotlin.assert(!true) { "text" }
}
fun assert(x: Boolean, y: Any) {}