mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
17 lines
279 B
Kotlin
Vendored
17 lines
279 B
Kotlin
Vendored
package test
|
|
|
|
import custom.*
|
|
|
|
public class KotlinB: AClass() {
|
|
public fun returnA(): AClass {}
|
|
|
|
public fun paramA(a: AClass) {}
|
|
|
|
public fun paramB(b: BClass) {}
|
|
|
|
public fun returnB(): BClass { }
|
|
|
|
@AAnnotation fun annoA() {}
|
|
|
|
@BAnnotation fun annoB() {}
|
|
} |