My current pattern to work around this is: ```kotl...
# announcements
z
My current pattern to work around this is:
Copy code
kotlin
interface Foo {
    fun bar(): String

    class Implementation(private val dependency: Dependency): Foo {
        override fun bar(): String = "Hello ${dependency.getString()}"
    }
}