[FIR] Fix Disappeared NULLABLE_TYPE_IN_CLASS_LITERAL_LHS
^KT-59970 Fixed
This commit is contained in:
committed by
Space Team
parent
1c395ef0df
commit
69d2b94a68
@@ -2,11 +2,11 @@ typealias TString = String
|
||||
fun f1() = TString::class
|
||||
|
||||
typealias TNullableString = String?
|
||||
fun f2() = TNullableString::class
|
||||
fun f2() = <!NULLABLE_TYPE_IN_CLASS_LITERAL_LHS!>TNullableString::class<!>
|
||||
|
||||
typealias TNullableTString = TString?
|
||||
typealias TTNullableTString = TNullableTString
|
||||
fun f3() = TTNullableTString::class
|
||||
fun f3() = <!NULLABLE_TYPE_IN_CLASS_LITERAL_LHS!>TTNullableTString::class<!>
|
||||
|
||||
inline fun <reified T> f4(b: Boolean): Any {
|
||||
<!TOPLEVEL_TYPEALIASES_ONLY!>typealias X = <!TYPEALIAS_SHOULD_EXPAND_TO_CLASS!>T<!><!>
|
||||
|
||||
Reference in New Issue
Block a user