summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-06-09 05:22:59 -0700
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-06-09 05:22:59 -0700
commit556c4204ad8ee6f67b29b5f91ace0229bcd16230 (patch)
tree225d7f20860d324d6855a081e8cadca3a7413972
parent43ae8259f2e01393219d1ece0c87614eece32621 (diff)
parentcbf1547556f6ab865282702218fabed087797c91 (diff)
downloadscala-556c4204ad8ee6f67b29b5f91ace0229bcd16230.tar.gz
scala-556c4204ad8ee6f67b29b5f91ace0229bcd16230.tar.bz2
scala-556c4204ad8ee6f67b29b5f91ace0229bcd16230.zip
Merge pull request #691 from scalamacros/topic/tests-for-fixed-bugs
tests for fixed bugs
-rw-r--r--test/files/pos/t5738.scala8
-rw-r--r--test/files/pos/t5742.scala8
-rw-r--r--test/files/run/t5816.check1
-rw-r--r--test/files/run/t5816.scala17
-rw-r--r--test/files/run/t5840.scala7
-rw-r--r--test/files/run/t5881.check2
-rw-r--r--test/files/run/t5881.scala6
7 files changed, 49 insertions, 0 deletions
diff --git a/test/files/pos/t5738.scala b/test/files/pos/t5738.scala
new file mode 100644
index 0000000000..b8755ed66e
--- /dev/null
+++ b/test/files/pos/t5738.scala
@@ -0,0 +1,8 @@
+import scala.reflect.runtime.universe._
+
+object Test extends App {
+ def f[T](a: T, b: T) = {
+ reify(a.toString + b)
+ reify(a + b.toString)
+ }
+} \ No newline at end of file
diff --git a/test/files/pos/t5742.scala b/test/files/pos/t5742.scala
new file mode 100644
index 0000000000..3d3125b5d3
--- /dev/null
+++ b/test/files/pos/t5742.scala
@@ -0,0 +1,8 @@
+import scala.reflect.runtime.universe._
+
+object Test extends App {
+ def foo[T](a: T) = reify {
+ val x1 = a
+ val x2 = reify(a)
+ }
+} \ No newline at end of file
diff --git a/test/files/run/t5816.check b/test/files/run/t5816.check
new file mode 100644
index 0000000000..920b64a50d
--- /dev/null
+++ b/test/files/run/t5816.check
@@ -0,0 +1 @@
+5.+(Test.this.y)
diff --git a/test/files/run/t5816.scala b/test/files/run/t5816.scala
new file mode 100644
index 0000000000..f0279e5703
--- /dev/null
+++ b/test/files/run/t5816.scala
@@ -0,0 +1,17 @@
+import scala.reflect.runtime.universe._
+import scala.reflect.runtime.{currentMirror => cm}
+import scala.tools.reflect.ToolBox
+
+object Test extends App {
+ val toolbox = cm.mkToolBox()
+
+ def printSource[T](expr: Expr[T]) {
+ val ttree = toolbox typeCheck expr.tree
+ println(ttree.toString)
+ }
+
+ var y = 3
+ printSource(reify {
+ 5 + y
+ })
+} \ No newline at end of file
diff --git a/test/files/run/t5840.scala b/test/files/run/t5840.scala
new file mode 100644
index 0000000000..da036d5122
--- /dev/null
+++ b/test/files/run/t5840.scala
@@ -0,0 +1,7 @@
+import scala.reflect.runtime.universe._
+
+object Test extends App {
+ reify {
+ class C[T <: String with Singleton]
+ }
+} \ No newline at end of file
diff --git a/test/files/run/t5881.check b/test/files/run/t5881.check
new file mode 100644
index 0000000000..477fb935a8
--- /dev/null
+++ b/test/files/run/t5881.check
@@ -0,0 +1,2 @@
+ClassTag[class scala.collection.immutable.List]
+ClassTag[class scala.collection.immutable.List]
diff --git a/test/files/run/t5881.scala b/test/files/run/t5881.scala
new file mode 100644
index 0000000000..01bee29181
--- /dev/null
+++ b/test/files/run/t5881.scala
@@ -0,0 +1,6 @@
+import scala.reflect.ClassTag
+
+object Test extends App {
+ println(implicitly[ClassTag[List[T forSome {type T <: List[T]}]]])
+ println(implicitly[ClassTag[List[Any]]])
+} \ No newline at end of file