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 May 7, 2024
1 parent c3be32e commit ede41bd
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 ede41bd

Please sign in to comment.