```interface OtherComponent { val stringConsumer...
# kotlin-inject
e
Copy code
interface OtherComponent {
  val stringConsumer: StringConsumer
}
@Component abstract class ApplicationComponent : OtherComponent {
  @Provides fun string() : String = "bar"
}