summaryrefslogtreecommitdiff
path: root/test/files/presentation/t8941/Runner.scala
blob: 0a8923a583f95a6e33a92d21cb7cca698b4278ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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()
  }

}