cca3237e46
#KT-4727 Fixed
11 lines
150 B
Kotlin
Vendored
11 lines
150 B
Kotlin
Vendored
package to
|
|
|
|
import java.util.ArrayList
|
|
|
|
internal class JavaClass {
|
|
fun foo() {
|
|
val list = ArrayList<String>()
|
|
list.add(1)
|
|
}
|
|
}
|