13 lines
159 B
Kotlin
Vendored
13 lines
159 B
Kotlin
Vendored
|
|
import java.util.ArrayList
|
|
|
|
|
|
class A {
|
|
internal fun foo() {
|
|
val list = ArrayList<String>()
|
|
list.add(1)
|
|
}
|
|
|
|
internal fun bar() {}
|
|
|
|
} |