summaryrefslogtreecommitdiff
path: root/test/files/pos/overzealous-assert-genbcode.scala
Commit message (Collapse)AuthorAgeFilesLines
* overzealous assert in GenBCodeMiguel Garcia2013-12-151-0/+10
The assert in question was aimed at ruling out gotos (ie "jumping-applys") in actual argument position of a jumping-apply. But the assert in question went overboard to also rule out a LabelDef in actual argument position. This commit removes the assert in question altogether. The unwanted behaviors, and only those, are rule out by the test added in this commit and the existing tests for SI-6089. See also https://issues.scala-lang.org/browse/SI-7749