New J2K: Fix existing test data
This commit is contained in:
committed by
Ilya Kirillov
parent
76b73542d9
commit
b13f7431f2
+3
-3
@@ -2,9 +2,9 @@
|
||||
// !specifyLocalVariableTypeByDefault: true
|
||||
|
||||
internal class Foo {
|
||||
fun foo(o: HashSet<*>?) {
|
||||
val o2: HashSet<*>? = o
|
||||
fun foo(o: HashSet<*>) {
|
||||
val o2: HashSet<*> = o
|
||||
var foo: Int = 0
|
||||
foo = o2!!.size
|
||||
foo = o2.size
|
||||
}
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
internal class Foo {
|
||||
fun foo(o: HashSet<*>?) {
|
||||
var foo = 0
|
||||
foo = o!!.size
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user