Files
kotlin-fork/compiler/testData/psi/examples/IPushPop.kt
T
2013-09-17 18:10:00 +04:00

5 lines
87 B
Kotlin
Vendored

open class IPushPop<T> {
val isEmpty : Boolean
fun push(item : T)
fun pop() : T
}