Skip to content

Commit

Permalink
Remove val from function parameter in test
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber committed Jul 11, 2024
1 parent 162d7ab commit 7c023c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ class FailureTest {
import me.tatarka.inject.annotations.Assisted
@Inject class Bar
@Inject fun Foo(val bar: Bar, @Assisted assisted: String): String = assisted
@Inject fun Foo(bar: Bar, @Assisted assisted: String): String = assisted
typealias Foo = () -> String
@Component abstract class MyComponent {
Expand Down

0 comments on commit 7c023c1

Please sign in to comment.