summaryrefslogtreecommitdiff
path: root/test/files/run/t5943a2.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-5943 toolboxes now autoimport Predef and scalaEugene Burmako2012-09-201-0/+9
Previously tb.typeCheck used default typer, which builds upon NoContext. Changing the context to analyzer.rootContext(NoCompilationUnit, EmptyTree) fixed the missing imports problem. Unfortunately this doesn't help in cases like "math.sqrt(4.0)" because of https://issues.scala-lang.org/browse/SI-6393. But anyways I'm adding this test case to pending.