If I want to match against `Map<String, String&...
# mockk
m
If I want to match against
Map<String, String>
what is the correct matcher to use?
Copy code
fun foo(map: Map<String, String>): String {
    ...
}

every { foo(any()) } returns "mock"
I tried
any()
but it complains about type erasure. Tried with
hint
as well but no luck.