Files
kotlin-fork/libraries/tools/kotlin-main-kts-test/testData/hello-resolve-junit-dynver-error.main.kts
2021-11-24 19:35:32 +03:00

10 lines
235 B
Kotlin
Vendored

// // org.junit.Assert.assertThrows was added in 4.13, compilation should fail
@file:DependsOn("junit:junit:(4.11,4.12]")
org.junit.Assert.assertThrows(NullPointerException::class.java) {
throw null!!
}
println("Hello, World!")