[FIR] Use correct type renderer in symbol rendering for diagnostics

#KT-62815 Fixed
This commit is contained in:
Kirill Rakhman
2023-12-21 17:12:00 +01:00
committed by Space Team
parent 6b049df87c
commit 8f3f72d9c9
7 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ compiler/testData/cli/jvm/firDeprecationJava.kt:3:12: warning: '@Deprecated(...)
compiler/testData/cli/jvm/firDeprecationJava.kt:4:17: warning: '@Deprecated(...) fun bar(a: String!, b: Int, c: Double): String!' is deprecated. Deprecated in Java.
JavaClass().bar("", 1, 2.0)
^
compiler/testData/cli/jvm/firDeprecationJava.kt:5:27: warning: '@Deprecated(...) field baz: ft<MutableList<String!>, List<String!>?>' is deprecated. Deprecated in Java.
compiler/testData/cli/jvm/firDeprecationJava.kt:5:27: warning: '@Deprecated(...) field baz: (MutableList<String!>..List<String!>?)' is deprecated. Deprecated in Java.
val baz = JavaClass().baz
^
OK