how do i access the function of an outer class fro...
# announcements
s
how do i access the function of an outer class from the function of an inner class, in which both functions have the same name, without creating a new instance of the class for example:
Copy code
class a {
    fun b() : Int {
        return 9
    }
    inner class c {
        fun b() : Int {
            return b()+4
        }
    }
}
a().c().b() will return a().b() + 4