something like this, maybe: ``` interface Builder&...
# announcements
s
something like this, maybe:
Copy code
interface Builder<out T> {
  fun common() : Builder<T> {
    // logic
    return this
  }
}
class Foo : Builder<Foo>