Fix error instead of muting it in kapt tests

This commit is contained in:
Nikolay Krasko
2021-12-14 16:51:37 +03:00
committed by teamcity
parent 5162ef31fc
commit e733aa21d5
4 changed files with 6 additions and 6 deletions
@@ -2,11 +2,11 @@
// NON_EXISTENT_CLASS
// NO_VALIDATION
@Suppress("CANNOT_INFER_PARAMETER_TYPE", "UNRESOLVED_REFERENCE")
@Suppress("UNRESOLVED_REFERENCE")
object NonExistentType {
val a: ABCDEF? = null
val b: List<ABCDEF>? = null
val c: (ABCDEF) -> Unit = { f -> }
val c: (ABCDEF) -> Unit = { f: ABCDEF -> }
val d: ABCDEF<String, (List<ABCDEF>) -> Unit>? = null
val foo: Foo get() = Foo()