Tagged Questions
3
votes
4answers
264 views
Scala compiler says my method is recursive in case when implicits and anonymous class is used
I want to be able to write code like
10 times {
doSomething
}
So I thought I could do that with implicits.
When i execute the following code in the Scala REPL it gets defined correctly
...