summaryrefslogtreecommitdiff
path: root/test/files/presentation/t8941/Runner.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/presentation/t8941/Runner.scala')
-rw-r--r--test/files/presentation/t8941/Runner.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/presentation/t8941/Runner.scala b/test/files/presentation/t8941/Runner.scala
new file mode 100644
index 0000000000..0a8923a583
--- /dev/null
+++ b/test/files/presentation/t8941/Runner.scala
@@ -0,0 +1,11 @@
+import scala.tools.nsc.interactive.tests.InteractiveTest
+
+object Test extends InteractiveTest {
+ override def runDefaultTests() {
+ // make sure typer is done.. the virtual pattern matcher might translate
+ // some trees and mess up positions. But we'll catch it red handed!
+ // sourceFiles foreach (src => askLoadedTyped(src).get)
+ super.runDefaultTests()
+ }
+
+}