> try:
> if (true) msg.replyTo(1L)

Doesn't work, same error. What does work is either:

if (true) {msg.replyTo(1L); None}

or

if (true) msg.replyTo(1L)
else msg.replyTo(2L)

So the bug must be related to figuring out the return value of the if
statement. I'll try and simulate this without a dependency on Lift.

Reply via email to