Octogonapus

- Total activity 8
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
-
Edited ClassCastException during runIde but not during tests
AnsweredGiven this example library code: interface Foo<in A, out B> : (A) -> B { override fun invoke(p1: A): B}object FooImpl : Foo<Unit, Unit> { override fun invoke(p1: Unit) = Unit} When my plugin ...