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 @@
|
||||
open class Library() {
|
||||
public val myString: String? = null
|
||||
class Library() {
|
||||
public val myString: String = 0
|
||||
}
|
||||
|
||||
open class User() {
|
||||
open fun main() {
|
||||
Library.myString?.isEmpty()
|
||||
class User() {
|
||||
fun main() {
|
||||
Library.myString.isEmpty()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user