New J2K: Fix existing test data
This commit is contained in:
committed by
Ilya Kirillov
parent
76b73542d9
commit
b13f7431f2
@@ -8,7 +8,7 @@ internal class X {
|
||||
}
|
||||
|
||||
internal class C {
|
||||
fun foo(map: HashMap<String?, String?>): String? {
|
||||
fun foo(map: HashMap<String, String>): String {
|
||||
return map["a"]
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
internal class C {
|
||||
fun foo(o: Any?) {
|
||||
if (o is String) {
|
||||
val l = o.length
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user