Files
2024-02-29 18:10:04 +00:00

7 lines
149 B
Kotlin
Vendored

private interface PrivateInterface<T> {
fun foo(): T
}
class PublicClass : PrivateInterface<Int> {
override fun foo(): Int = error("stub")
}