## Minimized example ```Scala class Foo: def foo = 23 object Unrelated: extension (f: Foo) def bar: Int = foo // ok ``` ## Output compiles ok. In `0.25.x` and earlier you would have to explicitly select `f.foo`.