I was experimenting with continuations, and I came across a case that seems to suggest that @cpsParam thwarts implicit conversions.
I have
def v: T @cpsParam[Unit, Unit]
// ...and then later
v must_== 42
// where must_== is from specs/mockito
I get the compiler error:
must_== is not a member of Int @cpsParam[Unit,Unit]
A more complete code sample is available on gist.
Is there a simple mistake I've made?
Thanks, Topher.