aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/typetags.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/typetags.scala')
-rw-r--r--tests/untried/pos/typetags.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/untried/pos/typetags.scala b/tests/untried/pos/typetags.scala
new file mode 100644
index 000000000..684ea1018
--- /dev/null
+++ b/tests/untried/pos/typetags.scala
@@ -0,0 +1,16 @@
+// TODO come up with a non-trivial universe different from ru
+// an rewrite this test, so that it makes sure that cross-universe implicit searches work
+//
+// import scala.reflect.{basis => rb}
+// import scala.reflect.runtime.{universe => ru}
+// object Test {
+// def main(args: Array[String]) {
+// def foo(implicit t: rb.TypeTag[List[Int]]) {
+// println(t)
+// val t2: ru.TypeTag[_] = t in ru.rootMirror
+// println(t2)
+// }
+// }
+// }
+
+object Test extends App