10 lines
213 B
Plaintext
Vendored
10 lines
213 B
Plaintext
Vendored
interface IFace<T> {
|
|
fun getStatus(arg: T): Boolean
|
|
}
|
|
class Some
|
|
private fun resolve(): IFace<Some> {
|
|
object : IFace<Some> {
|
|
constructor()
|
|
override fun getStatus(arg: Some): Boolean
|
|
}
|
|
} |