Seeing that you can omit left hand `this` from `th...
# announcements
d
Seeing that you can omit left hand
this
from
this::bar
, which one of these will kotlin use?
Copy code
fun bar() {}
class Foo
{
    fun bar() {}
    fun foo()
    {
        val x = ::bar
    }
}
Is it the static top level
bar
or
Foo.bar
?