8 lines
102 B
Kotlin
Vendored
8 lines
102 B
Kotlin
Vendored
abstract class A {
|
|
public abstract fun foo(p: Int)
|
|
|
|
public fun foo() {
|
|
foo(1)
|
|
}
|
|
}
|