summaryrefslogtreecommitdiff
path: root/test/files/run/t9097.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-9097 Consolidate testSom Snytt2015-01-201-2/+10
| | | | `pos` test is subsumed by `run`.
* SI-9097 Remove spurious warning about conflicting filenamesLukas Rytz2015-01-201-0/+26
When using delambdafy:method, closure classes are generated late. The class is added to a map and integrated into the PackageDef in transformStats. When declaring a package object, there are potentially multiple PackageDefs for the same package. In this case, the closure class was added to all of them. As a result, GenASM / GenBCode would run multiple times on the closure class. In GenBCode this would trigger a warning about conflicting filenames.