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
When trying to build the tests ./gradlew :integration-tests:ksp:test there's an error:
e: .../kotlin-inject/integration-tests/ksp/build/generated/ksp/jvmTest/kotlin/me/tatarka/inject/test/InjectComponent5.kt: (8, 23):
'public' property exposes its 'internal' type InternalFoo
The generated component looks like this:
publicclassInjectComponent5() : Component5() {
publicoverrideval foo:InternalFoo// <-`foo` is public, even though it's been declared as `internal`
get() =InternalFoo()
}
Is it valid usage?
The text was updated successfully, but these errors were encountered:
Having this test case (based on
ComponentTest.kt
):When trying to build the tests
./gradlew :integration-tests:ksp:test
there's an error:The generated component looks like this:
Is it valid usage?
The text was updated successfully, but these errors were encountered: