[minor] Fix test source - avoid warning about uused main args

This commit is contained in:
Ilya Chernikov
2020-02-14 08:24:20 +01:00
parent 6356807997
commit db91b520a5
+1 -1
View File
@@ -4,7 +4,7 @@ import java.io.File
object ContextClassLoaderTester {
@JvmStatic
fun main(args: Array<String>) {
fun main(@Suppress("UNUSED_PARAMETER") args: Array<String>) {
kotlin.test.DefaultAsserter.assertTrue("", true) // this tests that kotlin-test is in the compilation and runtime classpaths
val contextClassLoader = Thread.currentThread().getContextClassLoader()