summaryrefslogtreecommitdiff
path: root/test/files/neg/t7622-cyclic-dependency/ThePlugin.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t7622-cyclic-dependency/ThePlugin.scala')
-rw-r--r--test/files/neg/t7622-cyclic-dependency/ThePlugin.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/t7622-cyclic-dependency/ThePlugin.scala b/test/files/neg/t7622-cyclic-dependency/ThePlugin.scala
index 7a905ae32d..35c0ff8f53 100644
--- a/test/files/neg/t7622-cyclic-dependency/ThePlugin.scala
+++ b/test/files/neg/t7622-cyclic-dependency/ThePlugin.scala
@@ -12,7 +12,7 @@ class ThePlugin(val global: Global) extends Plugin {
val name = "cyclicdependency"
val description = "Declares two phases that have a cyclic dependency"
val components = List[PluginComponent](thePhase1,thePhase2)
-
+
private object thePhase1 extends PluginComponent {
val global = ThePlugin.this.global
@@ -22,7 +22,7 @@ class ThePlugin(val global: Global) extends Plugin {
def newPhase(prev: Phase) = new ThePhase(prev, phaseName)
}
-
+
private object thePhase2 extends PluginComponent {
val global = ThePlugin.this.global
@@ -32,7 +32,7 @@ class ThePlugin(val global: Global) extends Plugin {
def newPhase(prev: Phase) = new ThePhase(prev, phaseName)
}
-
+
private class ThePhase(prev: Phase, val name: String) extends Phase(prev) {
def run {}
}