Hi!
So I was wondering, is there any way to call super method from delegate?
I tried to do something like this, but this isn’t working
class Test : List<String> by ArrayList(){
override fun get(index: Int): String {
println("Get method")
return super<List>.get(index)
}
}