summaryrefslogtreecommitdiff
path: root/test/files/run/t6591_7.scala
diff options
context:
space:
mode:
authorJames Iry <jamesiry@gmail.com>2013-02-08 12:51:13 -0800
committerJames Iry <jamesiry@gmail.com>2013-02-08 12:51:13 -0800
commit23b69c1e05474dc6b504d63c074629132264deaf (patch)
tree1cc5359f577753eb0847293661e08b08026ad2a5 /test/files/run/t6591_7.scala
parent6537d79e47def868e028815db6f70e2dc7d49bac (diff)
parent57c0e63ba18c5845772d737570342e4054af459f (diff)
downloadscala-23b69c1e05474dc6b504d63c074629132264deaf.tar.gz
scala-23b69c1e05474dc6b504d63c074629132264deaf.tar.bz2
scala-23b69c1e05474dc6b504d63c074629132264deaf.zip
Merge pull request #2094 from scalamacros/ticket/6591
SI-6591 Reify and path-dependent types
Diffstat (limited to 'test/files/run/t6591_7.scala')
-rw-r--r--test/files/run/t6591_7.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/files/run/t6591_7.scala b/test/files/run/t6591_7.scala
new file mode 100644
index 0000000000..b6c8d399a0
--- /dev/null
+++ b/test/files/run/t6591_7.scala
@@ -0,0 +1,26 @@
+import scala.reflect.runtime.universe._
+import scala.tools.reflect.Eval
+
+object Test extends App {
+ locally {
+ val x = 2
+ def y = 3
+ var z = 4
+ class C {
+ var w = 5
+ locally {
+ val expr = reify(x + y + z + w)
+ // 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 => {
+ // 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}")
+ println(s"name = ${ft.name}, stable = ${ft.isStable}")
+ })
+ }
+ }
+ new C()
+ }
+} \ No newline at end of file