// FILE: before.kt interface Foo fun foo(a: Any) {} fun Foo.bar() { foo(this) } // FILE: after.kt interface Foo fun foo(a: Any) {} fun Foo.bar() { foo(this) }