summaryrefslogtreecommitdiff
path: root/test/files/neg/t7494-multi-right-after/ThePlugin.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t7494-multi-right-after/ThePlugin.scala')
-rw-r--r--test/files/neg/t7494-multi-right-after/ThePlugin.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/t7494-multi-right-after/ThePlugin.scala b/test/files/neg/t7494-multi-right-after/ThePlugin.scala
index 819176fa88..4c761517c1 100644
--- a/test/files/neg/t7494-multi-right-after/ThePlugin.scala
+++ b/test/files/neg/t7494-multi-right-after/ThePlugin.scala
@@ -12,7 +12,7 @@ class ThePlugin(val global: Global) extends Plugin {
val name = "multi-rafter"
val description = ""
val components = List[PluginComponent](thePhase)
-
+
private object thePhase extends PluginComponent {
val global = ThePlugin.this.global
@@ -20,9 +20,9 @@ class ThePlugin(val global: Global) extends Plugin {
override val runsRightAfter = Some("explicitouter")
val phaseName = ThePlugin.this.name
- def newPhase(prev: Phase) = new ThePhase(prev)
+ def newPhase(prev: Phase) = new ThePhase(prev)
}
-
+
private class ThePhase(prev: Phase) extends Phase(prev) {
def name = ThePlugin.this.name
def run {}