Turn only input type warning to error

^KT-45482 Fixed
This commit is contained in:
Victor Petukhov
2021-03-15 14:22:25 +03:00
parent c73c73e85e
commit b60056f11e
7 changed files with 12 additions and 14 deletions
@@ -10,6 +10,7 @@ fun box(): String {
assertEquals(null, pNUnit!!::class.javaPrimitiveType)
assertEquals(null, Unit::class.javaPrimitiveType)
@Suppress("TYPE_INFERENCE_ONLY_INPUT_TYPES")
assertEquals(java.lang.Void.TYPE, Nothing::class.javaPrimitiveType)
return "OK"