sean-mcdirmid:~/workspace/test12 mcdirmid$ ../scala/build/quick/bin/scalac -verbose src/test/Test.scala
src/test/Test.scala:10: error: not found: value entity
{Text(entity.flagsString)}
^
[typer in 20753ms]
[total in 20908ms]
one error found
I thought this was an infinite loop problem, but it turned out to be an exponential time problem. Add more XML c\
ode with more type errors, and the compiler won't terminate within a reasonable amount of time. Also, you can ta\
ke a couple of statements away from the above code to get it to run in 4 seconds rather than 20 seconds.
|