Files
kotlin-fork/compiler/testData/psi/examples/Stack.jet
T
2011-10-20 16:21:18 +02:00

13 lines
305 B
Plaintext

class Stack<T> : IPushPop<T> {
private val data = ArrayList<T>();
override fun push(item : T) {
data.add(item) // Problem: I would like to write push(...) = data.add(...), but the types do not match
}
override fun pop() = data.removeLast()
override val isEmpty
get() = data.isEmpty
}