summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorJames Iry <jamesiry@gmail.com>2013-03-05 08:24:13 -0800
committerJames Iry <jamesiry@gmail.com>2013-03-05 08:24:13 -0800
commitc4341385629bd114b61c55103f1d83f26dce22f9 (patch)
tree57f7df94be3644efa0362ab2893f3fe94b26ce9a /test/files
parent80e29e580cbfc93633e730f4a185b6efcd526568 (diff)
parent6898c9fd6c3ffb975e07cdcc5619f8e771e21ac0 (diff)
downloadscala-c4341385629bd114b61c55103f1d83f26dce22f9.tar.gz
scala-c4341385629bd114b61c55103f1d83f26dce22f9.tar.bz2
scala-c4341385629bd114b61c55103f1d83f26dce22f9.zip
Merge pull request #2197 from paulp/pr/integrate-range-positions
Integrate range positions.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t5603.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/run/t5603.scala b/test/files/run/t5603.scala
index 60dfd01fee..8c8038a602 100644
--- a/test/files/run/t5603.scala
+++ b/test/files/run/t5603.scala
@@ -36,7 +36,8 @@ object Test extends DirectTest {
val settings = new Settings()
settings.Xprintpos.value = true
+ settings.Yrangepos.value = true
val command = new CompilerCommand((CommandLineParser tokenize extraSettings) ++ args.toList, settings)
- new Global(command.settings, new ConsoleReporter(settings)) with interactive.RangePositions
+ Global(command.settings, new ConsoleReporter(settings))
}
}