summaryrefslogtreecommitdiff
path: root/test/files/run/t6591_7.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6591_7.scala')
-rw-r--r--test/files/run/t6591_7.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/run/t6591_7.scala b/test/files/run/t6591_7.scala
index b6c8d399a0..7313a3400d 100644
--- a/test/files/run/t6591_7.scala
+++ b/test/files/run/t6591_7.scala
@@ -1,5 +1,6 @@
import scala.reflect.runtime.universe._
import scala.tools.reflect.Eval
+import internal._
object Test extends App {
locally {
@@ -13,7 +14,7 @@ object Test extends App {
// blocked by SI-7103, though it's not the focus of this test
// therefore I'm just commenting out the evaluation
// println(expr.eval)
- expr.tree.freeTerms foreach (ft => {
+ freeTerms(expr.tree) foreach (ft => {
// blocked by SI-7104, though it's not the focus of this test
// therefore I'm just commenting out the call to typeSignature
// println(s"name = ${ft.name}, sig = ${ft.typeSignature}, stable = ${ft.isStable}")