Java to Kotlin converter: no more 2 conversion modes for each test, just a few tests to test non-standard settings
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import java.util.BitSet
|
||||
|
||||
open class Foo() {
|
||||
open fun foo(o: BitSet?) {
|
||||
var o2: BitSet? = o
|
||||
var foo: Int = 0
|
||||
foo = o2?.size()!!
|
||||
class Foo() {
|
||||
fun foo(o: BitSet) {
|
||||
val o2 = o
|
||||
val foo = 0
|
||||
foo = o2.size()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user