[#445] | project: compiler | priority: medium | category: bug | |
---|---|---|---|---|
submitter | assigned to | status | date submitted | |
Gilles | Michel | fixed | 2005-06-13 15:43:57.0 | |
subject | Run-time types fail with lists | |||
code |
object Test with Application { List("bug"); } |
|||
what happened | bash-3.00$ scalac -Xrtt test.scala bash-3.00$ scala -cp . Test Exception in thread "main" java.lang.NoSuchMethodError: scala.List.$colon$colon(Lscala/Type;Ljava/lang/Object;)L\ scala/List; at Test$. |
|||
what expected | A working execution. | |||
[back to overview] |
Michel edited on 2005-06-13 15:52:44.0 |
This is because your copy of the library wasn't compiled with run time types enabled. Making run time types work is slightly harder than what Burak said: you have to recompile the whole library and compiler with the option enabled for things to work, and hack the Apart from that you (the LAMP that is) should find a new maintainer for run time types, as I won't work on the compiler any longer, so assigning bugs to me now is a good way to have them ignored :-) [the current bug being the exception which will confirm the rule]. |
Michel edited on 2005-06-13 15:53:28.0 |