13 lines
158 B
Kotlin
Vendored
13 lines
158 B
Kotlin
Vendored
//FILE: a/a.kt
|
|
class A {
|
|
fun a() {
|
|
System.out.println("a")
|
|
}
|
|
}
|
|
|
|
//FILE: b/a.kt
|
|
class B {
|
|
fun b() {
|
|
System.out.println("b")
|
|
}
|
|
} |