Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
libraries
/
tools
/
kotlin-main-kts-test
/
testData
/
hello-resolve-junit-dynver-error.main.kts
blob: 926e540741320af6f6976ee8994075d0d7cedca4 [
file
]
// // 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!"
)