summaryrefslogtreecommitdiff
path: root/test/files/neg/t6535.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-6535 Step back from the precipice of a cycleJason Zaugg2012-12-041-0/+15
Adding any non-local parent to WrapAsScala will trigger a valid cyclic reference error. By moving the import of `Wrapper._` inside `WrapAsScala` and `WrapAsJava`, it is not in scope when typing the parents of those, and we avoid the cycle. Adds a test case to show the essense of the promiscious mutual imports that triggers this.