FIR: Do not add alias for variables with explicit type
This commit is contained in:
committed by
TeamCityServer
parent
5317cf3af1
commit
a0a57581ec
+1
-1
@@ -4,7 +4,7 @@ fun String.next(): String {
|
||||
|
||||
fun list(start: String) {
|
||||
var e: Any? = start
|
||||
if (<!SENSELESS_COMPARISON!>e==null<!>) return
|
||||
if (e==null) return
|
||||
while (e is String) {
|
||||
// Smart cast due to the loop condition
|
||||
if (e.length == 0)
|
||||
|
||||
Reference in New Issue
Block a user