You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a test case for overwriting provides functions.
This test case is currently failing. It currently leads to a stack overflow at runtime due to this code (example) being generated:
```kotlin
public class InjectInterfaceComponentWithIdenticalProvides(
foo: Foo
) : InterfaceComponentWithIdenticalProvides(foo) {
public override val foo: Foo
get() = foo
}
```
0 commit comments