object Scope1 { val someVar: Any = Any() fun foo() { someVar(1) } } object Scope2 { class Foo fun use() { val foo = Foo() foo() } }