fun global() { fun inner() { } inner() } fun Int.ext() { } open class Container { open fun member() { global() 5.ext() member() } }